diff options
author | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
---|---|---|
committer | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
commit | b6714f59cce26ddc831ca4a213e8f56476184fb1 (patch) | |
tree | 48abe892298c6d9e77d48e9de7d848af9beee71d /pkgs/development/python-modules/humanfriendly |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/humanfriendly')
-rw-r--r-- | pkgs/development/python-modules/humanfriendly/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/humanfriendly/default.nix b/pkgs/development/python-modules/humanfriendly/default.nix new file mode 100644 index 0000000..e918ae9 --- /dev/null +++ b/pkgs/development/python-modules/humanfriendly/default.nix @@ -0,0 +1,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 ]; + }; +} + |