1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/urlgrabber/default.nix

21 lines
526 B
Nix
Raw Normal View History

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