python tqdm: init at 3.1.4

This commit is contained in:
Frederik Rietdijk 2015-12-12 21:04:16 +01:00
parent c29702d132
commit 8f1c4b4dde

View File

@ -18722,6 +18722,31 @@ in modules // {
};
};
tqdm = buildPythonPackage rec {
name = "tqdm-${version}";
version = "3.1.4";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/t/tqdm/${name}.tar.gz";
sha256 = "e2dbef0df0fd24c9ae3b2e07bef2a3607ad8431142e76d3294a5a11926d214bf";
};
buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ];
propagatedBuildInputs = with self; [ matplotlib pandas ];
preBuild = ''
export LC_ALL="en_US.UTF-8"
'';
doCheck = !(isPy27); # Performance test fails
meta = {
description = "A Fast, Extensible Progress Meter";
homepage = https://github.com/tqdm/tqdm;
license = with licenses; [ mit ];
};
};
smmap = buildPythonPackage rec {
name = "smmap-0.9.0";
disabled = isPyPy; # This fails the tests if built with pypy