mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-08 14:23:40 +00:00
34 lines
684 B
Nix
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 ];
|
|
};
|
|
})
|