Files
nixpkgs/pkgs/development/python-modules/gdown/default.nix
T
2026-01-11 14:19:30 +01:00

55 lines
1.0 KiB
Nix

{
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";
};
})