urlgrabber: 3.9.1 -> 3.10.2
This commit is contained in:
24
pkgs/development/python-modules/urlgrabber/default.nix
Normal file
24
pkgs/development/python-modules/urlgrabber/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ 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; {
|
||||
homepage = "urlgrabber.baseurl.org";
|
||||
license = licenses.lgpl2Plus;
|
||||
description = "Python module for downloading files";
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user