backblaze-b2: use latest tqdm and remove pythonPackages.tqdm4

backblaze-b2 need tqdm >= 4.5.0 and that dependency was already
fulfilled with pythonPackages.tqdm, so let's use the current version and
remove pythonPackages.tqdm4.

cc @hrdinka @kevincox
This commit is contained in:
Frederik Rietdijk 2017-05-01 06:16:38 +02:00
parent 536a634f28
commit a33f9b0ff0
2 changed files with 1 additions and 24 deletions

View file

@ -11,7 +11,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "1gl1z7zg3s1xgx45i6b1bvx9iwviiiinl4my00h66qkhrw7ag8p1";
};
propagatedBuildInputs = with pythonPackages; [ futures requests2 six tqdm4 ];
propagatedBuildInputs = with pythonPackages; [ futures requests2 six tqdm ];
checkPhase = ''
python test_b2_command_line.py test

View file

@ -25947,29 +25947,6 @@ in {
tqdm = callPackage ../development/python-modules/tqdm { };
tqdm4 = buildPythonPackage rec {
name = "tqdm-${version}";
version = "4.7.6";
src = pkgs.fetchurl {
url = "mirror://pypi/t/tqdm/${name}.tar.gz";
sha256 = "1z801zl1y3cf6ixzw4jlpkbp9a9j92sqzs35l0jaqfq00aj1bdm0";
};
buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ];
propagatedBuildInputs = with self; [ matplotlib pandas ];
LC_ALL="en_US.UTF-8";
doCheck = false; # Many transient failures in performance tests and due to use of sleep
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