depot/third_party/nixpkgs/pkgs/development/python-modules/human-readable/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

33 lines
626 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
];
};
}