mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
humanize: init at 0.5.1
This commit is contained in:
parent
cab3572e99
commit
886a872853
1 changed files with 23 additions and 0 deletions
|
@ -3386,6 +3386,29 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
humanize = buildPythonPackage rec {
|
||||
version = "0.5.1";
|
||||
name = "humanize-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/h/humanize/${name}.tar.gz";
|
||||
md5 = "e8473d9dc1b220911cac2edd53b1d973";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ mock ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "python humanize utilities";
|
||||
homepage = https://github.com/jmoiron/humanize;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ matthiasbeyer ];
|
||||
platforms = platforms.linux; # can only test on linux
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
hovercraft = buildPythonPackage rec {
|
||||
disabled = ! isPy3k;
|
||||
name = "hovercraft-${version}";
|
||||
|
|
Loading…
Reference in a new issue