summary refs log tree commit diff
path: root/pkgs/development/python-modules/urlgrabber/default.nix
blob: 528846d723815776df4301442496e297269f1fe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 = http://urlgrabber.baseurl.org;
    license = licenses.lgpl2Plus;
    description = "Python module for downloading files";
    maintainers = with maintainers; [ qknight ];
  };
}