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

33 lines
708 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, setuptools-scm
2021-02-13 22:56:04 +00:00
, setuptools
, pytestCheckHook
, freezegun
}:
buildPythonPackage rec {
version = "3.9.0";
pname = "humanize";
disabled = isPy27; # setup.py no longer compatible
src = fetchPypi {
inherit pname version;
sha256 = "892a5b7b87763c4c6997a58382c2b1f4614048a2e01c23ef1bb0456e6f9d4d5d";
};
nativeBuildInputs = [ setuptools-scm ];
2021-02-13 22:56:04 +00:00
propagatedBuildInputs = [ setuptools ];
checkInputs = [ pytestCheckHook freezegun ];
meta = with lib; {
description = "Python humanize utilities";
homepage = "https://github.com/jmoiron/humanize";
license = licenses.mit;
2021-02-13 22:56:04 +00:00
maintainers = with maintainers; [ rmcgibbo ];
};
}