summary refs log tree commit diff
path: root/pkgs/development/python-modules/urlgrabber
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-16 00:01:35 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-16 00:11:06 -0400
commit5f6a20f2918d9bcde87fc720b3e00a501835970b (patch)
treebdbcf16dab248ec8f7a5bf02993d07c3e3e611e1 /pkgs/development/python-modules/urlgrabber
parente1182f070f11ee31e631d29bca16e2d7435cf3d7 (diff)
downloadnixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.tar
nixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.tar.gz
nixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.tar.bz2
nixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.tar.lz
nixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.tar.xz
nixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.tar.zst
nixlib-5f6a20f2918d9bcde87fc720b3e00a501835970b.zip
urlgrabber: 3.9.1 -> 3.10.2
Diffstat (limited to 'pkgs/development/python-modules/urlgrabber')
-rw-r--r--pkgs/development/python-modules/urlgrabber/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/urlgrabber/default.nix b/pkgs/development/python-modules/urlgrabber/default.nix
new file mode 100644
index 000000000000..f399f4d426ee
--- /dev/null
+++ b/pkgs/development/python-modules/urlgrabber/default.nix
@@ -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 ];
+  };
+}
+