1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.tqdm: fix failing test

This commit is contained in:
Frederik Rietdijk 2016-01-04 09:57:31 +01:00
parent 35cf6c428f
commit 84dc27bf43

View file

@ -19120,12 +19120,15 @@ in modules // {
buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ];
propagatedBuildInputs = with self; [ matplotlib pandas ];
# Performance test fails
prePatch = ''
rm tqdm/tests/tests_perf.py
'';
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;