Merge pull request #11665 from FRidh/tqdm

python tqdm: init at 3.1.4
This commit is contained in:
goibhniu 2015-12-13 11:36:09 +01:00
commit c94dfa0507

View File

@ -18741,6 +18741,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