1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 hatchling,
6 hatch-vcs,
7}:
8
9buildPythonPackage rec {
10 pname = "human-readable";
11 version = "2.0.0";
12
13 src = fetchPypi {
14 pname = "human_readable";
15 inherit version;
16 hash = "sha256-VuuUReVgzPoGlZCK4uyLAIG4bUnroaCDO8CuD0TWxOk=";
17 };
18
19 pyproject = true;
20
21 nativeBuildInputs = [
22 hatchling
23 hatch-vcs
24 ];
25
26 meta = with lib; {
27 description = "Library to make data intended for machines, readable to humans";
28 homepage = "https://github.com/staticdev/human-readable";
29 license = licenses.mit;
30 maintainers = with maintainers; [ mkg20001 ];
31 };
32}