python3Packages.humanize: cleanup

This commit is contained in:
Robert T. McGibbon 2021-02-13 17:56:04 -05:00
parent 4b3596c34e
commit b7f4d3d949

View file

@ -2,8 +2,10 @@
, buildPythonPackage
, fetchPypi
, isPy27
, mock
, setuptools_scm
, setuptools
, pytestCheckHook
, freezegun
}:
buildPythonPackage rec {
@ -17,16 +19,14 @@ buildPythonPackage rec {
};
nativeBuildInputs = [ setuptools_scm ];
checkInputs = [ mock ];
doCheck = false;
propagatedBuildInputs = [ setuptools ];
checkInputs = [ pytestCheckHook freezegun ];
meta = with lib; {
description = "Python humanize utilities";
homepage = "https://github.com/jmoiron/humanize";
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
maintainers = with maintainers; [ rmcgibbo ];
};
}