`buildDotnetModule`: add support for installing pre-release tools (#374663)
[NixPkgs.git] / pkgs / development / python-modules / human-readable / default.nix
blobc2dc06ddf7b601ca3e5c1f9804db2a5dbcd805f8
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   hatchling,
6   hatch-vcs,
7 }:
9 buildPythonPackage rec {
10   pname = "human-readable";
11   version = "1.4.1";
13   src = fetchPypi {
14     pname = "human_readable";
15     inherit version;
16     hash = "sha256-yBv6A10ogYM3mVRqbxLnG6TB76fdpqi+wQ/WunhQIR8=";
17   };
19   pyproject = true;
21   nativeBuildInputs = [
22     hatchling
23     hatch-vcs
24   ];
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   };