mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
backblaze-b2: 0.4.4 -> 0.6.2
This commit is contained in:
parent
afcf3176ec
commit
050733abb0
@ -2,16 +2,16 @@
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "backblaze-b2-${version}";
|
||||
version = "0.4.4";
|
||||
version = "0.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Backblaze";
|
||||
repo = "B2_Command_Line_Tool";
|
||||
rev = "74a5e567925899f1fc6204aa85d4c84c0d0e511a";
|
||||
sha256 = "1g9j5s69w6n70nb18rvx3gm9f4gi1vis23ib8rn2v1khv6z2acqp";
|
||||
rev = "3a4cd3f0b5309f79f98c2e0d51afc19fb2fe4201";
|
||||
sha256 = "1gl1z7zg3s1xgx45i6b1bvx9iwviiiinl4my00h66qkhrw7ag8p1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ six ];
|
||||
propagatedBuildInputs = with pythonPackages; [ futures requests2 six tqdm4 ];
|
||||
|
||||
checkPhase = ''
|
||||
python test_b2_command_line.py test
|
||||
|
@ -10477,11 +10477,11 @@ in modules // {
|
||||
|
||||
futures = buildPythonPackage rec {
|
||||
name = "futures-${version}";
|
||||
version = "3.0.4";
|
||||
version = "3.0.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/f/futures/${name}.tar.gz";
|
||||
sha256 = "19485d83f7bd2151c0aeaf88fbba3ee50dadfb222ffc3b66a344ef4952b782a3";
|
||||
sha256 = "1pw1z4329xvlabdpwqa6b7v2fxf7hl64m4cgr22ckbym8m8m4hh5";
|
||||
};
|
||||
|
||||
# This module is for backporting functionality to Python 2.x, it's builtin in py3k
|
||||
@ -23192,6 +23192,29 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user