blob: 4ff22bd1fa2babdc374bdf070dcbb4f2767990a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
beautifulsoup4,
buildPythonPackage,
fetchPypi,
filelock,
hatch-fancy-pypi-readme,
hatch-vcs,
hatchling,
requests,
setuptools,
tqdm,
}:
buildPythonPackage (finalAttrs: {
pname = "gdown";
version = "5.2.1";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-JHwq0fV521tmtUwE5qhxmV/I/XAhcIuVC4unsyz5AyM=";
};
build-system = [
hatchling
hatch-vcs
hatch-fancy-pypi-readme
];
dependencies = [
beautifulsoup4
filelock
requests
setuptools
tqdm
]
++ requests.optional-dependencies.socks;
checkPhase = ''
$out/bin/gdown --help > /dev/null
'';
pythonImportsCheck = [ "gdown" ];
meta = {
description = "CLI tool for downloading large files from Google Drive";
homepage = "https://github.com/wkentaro/gdown";
changelog = "https://github.com/wkentaro/gdown/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ breakds ];
mainProgram = "gdown";
};
})
|