forked from mirrors/nixpkgs
pythonPackages.request_download: init at 0.1.1
This commit is contained in:
parent
44cc1d7193
commit
03aacfaddd
|
@ -21731,6 +21731,27 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
requests_download = buildPythonPackage rec {
|
||||||
|
pname = "requests_download";
|
||||||
|
version = "0.1.1";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
format = "wheel";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = https://files.pythonhosted.org/packages/60/af/10f899f0574a81cbc511124c08d7c7dc46c20d4f956a6a3c793ad4330bb4/requests_download-0.1.1-py2.py3-none-any.whl;
|
||||||
|
sha256 = "07832a93314bcd619aaeb08611ae245728e66672efb930bc2a300a115a47dab7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ requests2 ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Download files using requests and save them to a target path";
|
||||||
|
homepage = https://www.github.com/takluyver/requests_download;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainer = maintainers.fridh;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
requests_oauthlib = buildPythonPackage rec {
|
requests_oauthlib = buildPythonPackage rec {
|
||||||
version = "0.4.1";
|
version = "0.4.1";
|
||||||
|
|
Loading…
Reference in a new issue