nixpkgs/pkgs/development/python-modules/urlgrabber/default.nix

25 lines
570 B
Nix
Raw Normal View History

2017-09-16 05:01:35 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pycurl, isPy3k }:
buildPythonPackage rec {
pname = "urlgrabber";
version = "3.10.2";
name = "${pname}-${version}";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0w1h7hlsq406bxfy2pn4i9bd003bwl0q9b7p03z3g6yl0d21ddq5";
};
propagatedBuildInputs = [ pycurl ];
meta = with stdenv.lib; {
2018-09-08 17:30:00 +01:00
homepage = http://urlgrabber.baseurl.org;
2017-09-16 05:01:35 +01:00
license = licenses.lgpl2Plus;
description = "Python module for downloading files";
maintainers = with maintainers; [ qknight ];
};
}