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

buildPythonPackage rec {
  pname = "urlgrabber";
  version = "4.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "075af8afabae6362482d254e5ac3ffa595d1766117b684e53d9c25c2e937e139";
  };

  propagatedBuildInputs = [ pycurl six ];

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