Files
2026-04-26 20:18:57 +02:00

34 lines
684 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
hatchling,
hatch-vcs,
}:
buildPythonPackage (finalAttrs: {
pname = "human-readable";
version = "2.0.3";
pyproject = true;
src = fetchPypi {
pname = "human_readable";
inherit (finalAttrs) version;
hash = "sha256-P4Ef1W7oZpVyyy7J+FK1PuBwB0jlPDaVcx/9mrT8Uks=";
};
build-system = [
hatchling
hatch-vcs
];
pythonImportsCheck = [ "human_readable" ];
meta = {
description = "Library to make data intended for machines, readable to humans";
homepage = "https://github.com/staticdev/human-readable";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mkg20001 ];
};
})