summary refs log tree commit diff
path: root/pkgs/development/python-modules/urlgrabber/default.nix
blob: ffd99734f93284b166c8e87c3c87d0dc9abd0cdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi, pycurl, six }:

buildPythonPackage rec {
  pname = "urlgrabber";
  version = "4.0.0";
  name  = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0fazs574fgixd525cn2dh027f4qf0c0gbwcfyfkhc6fkblfa1ibr";
  };

  propagatedBuildInputs = [ pycurl six ];

  meta = with stdenv.lib; {
    homepage = http://urlgrabber.baseurl.org;
    license = licenses.lgpl2Plus;
    description = "Python module for downloading files";
    maintainers = with maintainers; [ qknight ];
  };
}