Merge pull request #113060 from rmcgibbo/humanize

This commit is contained in:
Sandro 2021-02-14 01:12:04 +01:00 committed by GitHub
commit ee8d64213e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 ];
};
}