about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-08-16 18:24:35 +0200
committerPeter Simons <simons@cryp.to>2019-08-16 19:29:46 +0200
commitf2b661a14434b9f137deb37157b11982ac90d158 (patch)
tree8aa06cbe467cc11611129fb260e6a8b62a964eda /pkgs
parentb750ebf1b3b4b45aea037c6bf6ac9f4faed4966f (diff)
downloadnixlib-f2b661a14434b9f137deb37157b11982ac90d158.tar
nixlib-f2b661a14434b9f137deb37157b11982ac90d158.tar.gz
nixlib-f2b661a14434b9f137deb37157b11982ac90d158.tar.bz2
nixlib-f2b661a14434b9f137deb37157b11982ac90d158.tar.lz
nixlib-f2b661a14434b9f137deb37157b11982ac90d158.tar.xz
nixlib-f2b661a14434b9f137deb37157b11982ac90d158.tar.zst
nixlib-f2b661a14434b9f137deb37157b11982ac90d158.zip
python-urlgrabber: update to 4.0.0 to support python-3.x
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/urlgrabber/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/urlgrabber/default.nix b/pkgs/development/python-modules/urlgrabber/default.nix
index 528846d72381..ffd99734f932 100644
--- a/pkgs/development/python-modules/urlgrabber/default.nix
+++ b/pkgs/development/python-modules/urlgrabber/default.nix
@@ -1,18 +1,16 @@
-{ stdenv, buildPythonPackage, fetchPypi, pycurl, isPy3k }:
+{ stdenv, buildPythonPackage, fetchPypi, pycurl, six }:
 
 buildPythonPackage rec {
   pname = "urlgrabber";
-  version = "3.10.2";
+  version = "4.0.0";
   name  = "${pname}-${version}";
 
-  disabled = isPy3k;
-
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0w1h7hlsq406bxfy2pn4i9bd003bwl0q9b7p03z3g6yl0d21ddq5";
+    sha256 = "0fazs574fgixd525cn2dh027f4qf0c0gbwcfyfkhc6fkblfa1ibr";
   };
 
-  propagatedBuildInputs = [ pycurl ];
+  propagatedBuildInputs = [ pycurl six ];
 
   meta = with stdenv.lib; {
     homepage = http://urlgrabber.baseurl.org;
@@ -21,4 +19,3 @@ buildPythonPackage rec {
     maintainers = with maintainers; [ qknight ];
   };
 }
-