evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / human-readable / default.nix
blob9081398d7a59bccd627a8e36d55a64ae22aa62a2
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   hatchling,
6   hatch-vcs,
7 }:
9 buildPythonPackage rec {
10   pname = "human-readable";
11   version = "1.3.4";
13   src = fetchPypi {
14     pname = "human_readable";
15     inherit version;
16     hash = "sha256-VybqyJBm7CXRREehc+ZFqFUYRkXQJOswZwXiv7tg8MA=";
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   };