b9bd8dd4d3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-requests_download/versions
32 lines
833 B
Nix
32 lines
833 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "requests_download";
|
|
version = "0.1.2";
|
|
|
|
format = "wheel";
|
|
|
|
#src = pkgs.fetchurl {
|
|
# url = https://files.pythonhosted.org/packages/60/af/10f899f0574a81cbc511124c08d7c7dc46c20d4f956a6a3c793ad4330bb4/requests_download-0.1.2-py2.py3-none-any.whl;
|
|
# sha256 = "1ballx1hljpdpyvqzqn79m0dc21z2smrnxk2ylb6dbpg5crrskcr";
|
|
#};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version format;
|
|
sha256 = "1ballx1hljpdpyvqzqn79m0dc21z2smrnxk2ylb6dbpg5crrskcr";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
meta = {
|
|
description = "Download files using requests and save them to a target path";
|
|
homepage = https://www.github.com/takluyver/requests_download;
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.fridh ];
|
|
};
|
|
}
|