backblaze-b2: 0.4.4 -> 0.6.2

+29 -6
+4 -4
pkgs/development/tools/backblaze-b2/default.nix
··· 2 3 pythonPackages.buildPythonApplication rec { 4 name = "backblaze-b2-${version}"; 5 - version = "0.4.4"; 6 7 src = fetchFromGitHub { 8 owner = "Backblaze"; 9 repo = "B2_Command_Line_Tool"; 10 - rev = "74a5e567925899f1fc6204aa85d4c84c0d0e511a"; 11 - sha256 = "1g9j5s69w6n70nb18rvx3gm9f4gi1vis23ib8rn2v1khv6z2acqp"; 12 }; 13 14 - propagatedBuildInputs = with pythonPackages; [ six ]; 15 16 checkPhase = '' 17 python test_b2_command_line.py test
··· 2 3 pythonPackages.buildPythonApplication rec { 4 name = "backblaze-b2-${version}"; 5 + version = "0.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "Backblaze"; 9 repo = "B2_Command_Line_Tool"; 10 + rev = "3a4cd3f0b5309f79f98c2e0d51afc19fb2fe4201"; 11 + sha256 = "1gl1z7zg3s1xgx45i6b1bvx9iwviiiinl4my00h66qkhrw7ag8p1"; 12 }; 13 14 + propagatedBuildInputs = with pythonPackages; [ futures requests2 six tqdm4 ]; 15 16 checkPhase = '' 17 python test_b2_command_line.py test
+25 -2
pkgs/top-level/python-packages.nix
··· 10477 10478 futures = buildPythonPackage rec { 10479 name = "futures-${version}"; 10480 - version = "3.0.4"; 10481 10482 src = pkgs.fetchurl { 10483 url = "mirror://pypi/f/futures/${name}.tar.gz"; 10484 - sha256 = "19485d83f7bd2151c0aeaf88fbba3ee50dadfb222ffc3b66a344ef4952b782a3"; 10485 }; 10486 10487 # This module is for backporting functionality to Python 2.x, it's builtin in py3k ··· 23176 src = pkgs.fetchurl { 23177 url = "mirror://pypi/t/tqdm/${name}.tar.gz"; 23178 sha256 = "f12d792685f779e8754e623aff1a25a93b98a90457e3a2b7eb89b4401c2c239e"; 23179 }; 23180 23181 buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ];
··· 10477 10478 futures = buildPythonPackage rec { 10479 name = "futures-${version}"; 10480 + version = "3.0.5"; 10481 10482 src = pkgs.fetchurl { 10483 url = "mirror://pypi/f/futures/${name}.tar.gz"; 10484 + sha256 = "1pw1z4329xvlabdpwqa6b7v2fxf7hl64m4cgr22ckbym8m8m4hh5"; 10485 }; 10486 10487 # This module is for backporting functionality to Python 2.x, it's builtin in py3k ··· 23176 src = pkgs.fetchurl { 23177 url = "mirror://pypi/t/tqdm/${name}.tar.gz"; 23178 sha256 = "f12d792685f779e8754e623aff1a25a93b98a90457e3a2b7eb89b4401c2c239e"; 23179 + }; 23180 + 23181 + buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ]; 23182 + propagatedBuildInputs = with self; [ matplotlib pandas ]; 23183 + 23184 + LC_ALL="en_US.UTF-8"; 23185 + 23186 + doCheck = false; # Many transient failures in performance tests and due to use of sleep 23187 + 23188 + meta = { 23189 + description = "A Fast, Extensible Progress Meter"; 23190 + homepage = https://github.com/tqdm/tqdm; 23191 + license = with licenses; [ mit ]; 23192 + }; 23193 + }; 23194 + 23195 + tqdm4 = buildPythonPackage rec { 23196 + name = "tqdm-${version}"; 23197 + version = "4.7.6"; 23198 + 23199 + src = pkgs.fetchurl { 23200 + url = "mirror://pypi/t/tqdm/${name}.tar.gz"; 23201 + sha256 = "1z801zl1y3cf6ixzw4jlpkbp9a9j92sqzs35l0jaqfq00aj1bdm0"; 23202 }; 23203 23204 buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ];