blob: 9e0b2be29335e42f61372e1a230083e733d971f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
fetchPypi,
buildPythonPackage,
hatchling,
hatch-vcs,
}:
buildPythonPackage rec {
pname = "human-readable";
version = "2.0.0";
src = fetchPypi {
pname = "human_readable";
inherit version;
hash = "sha256-VuuUReVgzPoGlZCK4uyLAIG4bUnroaCDO8CuD0TWxOk=";
};
pyproject = true;
nativeBuildInputs = [
hatchling
hatch-vcs
];
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 ];
};
}
|