python3Packages.humanize: cleanup
This commit is contained in:
parent
4b3596c34e
commit
b7f4d3d949
@ -2,8 +2,10 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, isPy27
|
, isPy27
|
||||||
, mock
|
|
||||||
, setuptools_scm
|
, setuptools_scm
|
||||||
|
, setuptools
|
||||||
|
, pytestCheckHook
|
||||||
|
, freezegun
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -17,16 +19,14 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools_scm ];
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
checkInputs = [ mock ];
|
propagatedBuildInputs = [ setuptools ];
|
||||||
|
checkInputs = [ pytestCheckHook freezegun ];
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python humanize utilities";
|
description = "Python humanize utilities";
|
||||||
homepage = "https://github.com/jmoiron/humanize";
|
homepage = "https://github.com/jmoiron/humanize";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ rmcgibbo ];
|
||||||
platforms = platforms.unix;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user