1{ lib, buildPythonPackage, fetchPypi, pycurl, six }:
2
3buildPythonPackage rec {
4 pname = "urlgrabber";
5 version = "4.1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "075af8afabae6362482d254e5ac3ffa595d1766117b684e53d9c25c2e937e139";
10 };
11
12 propagatedBuildInputs = [ pycurl six ];
13
14 meta = with lib; {
15 homepage = "http://urlgrabber.baseurl.org";
16 license = licenses.lgpl2Plus;
17 description = "Python module for downloading files";
18 maintainers = with maintainers; [ qknight ];
19 };
20}