depot/third_party/nixpkgs/pkgs/development/python-modules/urlgrabber/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

21 lines
543 B
Nix

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