about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/human-readable/default.nix
blob: 3c67a04b143a053c86cfdd156fcbfcd6d7d1d025 (plain) (blame)
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
33
{ 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
    ];
  };
}