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

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

  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";
    mainProgram = "urlgrabber";
    maintainers = with maintainers; [ qknight ];
  };
}