nixpkgs/pkgs/development/python-modules/urlgrabber/default.nix

21 lines
518 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pycurl, six }:
2017-09-16 06:01:35 +02:00
buildPythonPackage rec {
pname = "urlgrabber";
2019-10-24 08:47:51 +02:00
version = "4.1.0";
2017-09-16 06:01:35 +02:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:51 +02:00
sha256 = "075af8afabae6362482d254e5ac3ffa595d1766117b684e53d9c25c2e937e139";
2017-09-16 06:01:35 +02:00
};
propagatedBuildInputs = [ pycurl six ];
2017-09-16 06:01:35 +02:00
meta = with lib; {
homepage = "http://urlgrabber.baseurl.org";
2017-09-16 06:01:35 +02:00
license = licenses.lgpl2Plus;
description = "Python module for downloading files";
maintainers = with maintainers; [ qknight ];
};
}