mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
22 lines
543 B
Nix
22 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 ];
|
|
};
|
|
}
|