depot/third_party/nixpkgs/pkgs/development/python-modules/human-readable/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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