commit
c94dfa0507
@ -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 {
|
smmap = buildPythonPackage rec {
|
||||||
name = "smmap-0.9.0";
|
name = "smmap-0.9.0";
|
||||||
disabled = isPyPy; # This fails the tests if built with pypy
|
disabled = isPyPy; # This fails the tests if built with pypy
|
||||||
|
Loading…
x
Reference in New Issue
Block a user