aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/humanfriendly/default.nix
blob: e918ae944075dc3f34a754489d218d5bf15ca01b (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
{ stdenv, buildPythonPackage, fetchPypi
, monotonic
}:

buildPythonPackage rec {
  pname = "humanfriendly";
  version = "4.16.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ywzfpg7b1k6s6m9yps4yfs6l7pjp4rcrp8vnhapynbb0np9h7pd";
  };

  propagatedBuildInputs = [ monotonic ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Human friendly output for text interfaces using Python";
    homepage = https://humanfriendly.readthedocs.io;
    license = licenses.mit;
    maintainers = with maintainers; [ stesie ];
  };
}