60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
freezegun,
gettext,
pytestCheckHook,
pythonOlder,
python,
hatch-vcs,
hatchling,
}:
buildPythonPackage rec {
pname = "humanize";
version = "4.12.3";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "python-humanize";
repo = "humanize";
tag = version;
hash = "sha256-VsB59tS2KRZ0JKd1FzA+RTEzpkUyj9RhhSopseHg+m8=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
gettext
];
postBuild = ''
scripts/generate-translation-binaries.sh
'';
postInstall = ''
cp -r 'src/humanize/locale' "$out/${python.sitePackages}/humanize/"
'';
nativeCheckInputs = [
freezegun
pytestCheckHook
];
pythonImportsCheck = [ "humanize" ];
meta = with lib; {
description = "Python humanize utilities";
homepage = "https://github.com/python-humanize/humanize";
changelog = "https://github.com/python-humanize/humanize/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [
rmcgibbo
Luflosi
];
};
}