nixpkgs/pkgs/development/python-modules/gdown/default.nix
2020-08-16 19:31:00 +02:00

32 lines
658 B
Nix

{ lib
, buildPythonApplication
, fetchPypi
, filelock
, requests
, tqdm
, setuptools
}:
buildPythonApplication rec {
pname = "gdown";
version = "3.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "bf5f001e3a7add296e5298240c64db88ba88e5c136bd1fe84fcbd542feb6fccd";
};
propagatedBuildInputs = [ filelock requests tqdm setuptools ];
checkPhase = ''
$out/bin/gdown --help > /dev/null
'';
meta = with lib; {
description = "A CLI tool for downloading large files from Google Drive";
homepage = "https://github.com/wkentaro/gdown";
license = licenses.mit;
maintainers = with maintainers; [ breakds ];
};
}