fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
623 B
Nix
32 lines
623 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
hatchling,
|
|
hatch-vcs,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "human-readable";
|
|
version = "1.3.4";
|
|
|
|
src = fetchPypi {
|
|
pname = "human_readable";
|
|
inherit version;
|
|
hash = "sha256-VybqyJBm7CXRREehc+ZFqFUYRkXQJOswZwXiv7tg8MA=";
|
|
};
|
|
|
|
pyproject = true;
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to make data intended for machines, readable to humans";
|
|
homepage = "https://github.com/staticdev/human-readable";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
};
|
|
}
|