urlgrabber: 3.9.1 -> 3.10.2

This commit is contained in:
Samuel Leathers
2017-09-16 00:01:35 -04:00
parent e1182f070f
commit 5f6a20f291
2 changed files with 25 additions and 22 deletions

View 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 ];
};
}