Merge pull request #98792 from NixOS/kevincox-b2
backblaze-b2: 1.3.8 -> 2.0.2
This commit is contained in:
commit
7201e03a07
30
pkgs/development/python-modules/class-registry/default.nix
Normal file
30
pkgs/development/python-modules/class-registry/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
lib,
|
||||||
|
nose,
|
||||||
|
six,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "class-registry";
|
||||||
|
version = "2.1.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0zjf9nczl1ifzj07bgs6mwxsfd5xck9l0lchv2j0fv2n481xp2v7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
checkInputs = [ nose ];
|
||||||
|
|
||||||
|
# Tests currently failing.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Factory+Registry pattern for Python classes.";
|
||||||
|
homepage = "https://class-registry.readthedocs.io/en/latest/";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ kevincox ];
|
||||||
|
};
|
||||||
|
}
|
@ -1,40 +1,39 @@
|
|||||||
{ lib, buildPythonApplication, fetchFromGitHub
|
{
|
||||||
, arrow, futures, logfury, requests, six, tqdm
|
fetchFromGitHub,
|
||||||
|
lib,
|
||||||
|
python3Packages,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "backblaze-b2";
|
pname = "backblaze-b2";
|
||||||
version = "1.3.8";
|
version = "2.0.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Backblaze";
|
owner = "Backblaze";
|
||||||
repo = "B2_Command_Line_Tool";
|
repo = "B2_Command_Line_Tool";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1y4z4w6fj92rh9mrjsi0nmnzcmrj5jikarq2vs5qznvjdjm62igw";
|
sha256 = "00zs0a580vvfm2w4ja68mc46360p475wlgagjkq1hi4m8s4qwd75";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ arrow futures logfury requests six tqdm ];
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
b2sdk
|
||||||
|
class-registry
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = with python3Packages; [
|
||||||
|
nose
|
||||||
|
];
|
||||||
|
|
||||||
|
# doCheck = false;
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
python test_b2_command_line.py test
|
nosetests
|
||||||
'';
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
# b2 uses an upper bound on arrow, because arrow 0.12.1 is not
|
|
||||||
# compatible with Python 2.6:
|
|
||||||
#
|
|
||||||
# https://github.com/crsmithdev/arrow/issues/517
|
|
||||||
#
|
|
||||||
# However, since we use Python 2.7, newer versions of arrow are fine.
|
|
||||||
|
|
||||||
sed -i 's/,<0.12.1//g' requirements.txt
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mv "$out/bin/b2" "$out/bin/backblaze-b2"
|
mv "$out/bin/b2" "$out/bin/backblaze-b2"
|
||||||
|
|
||||||
sed 's/^_have b2 \&\&$/_have backblaze-b2 \&\&/' -i contrib/bash_completion/b2
|
sed 's/b2/backblaze-b2/' -i contrib/bash_completion/b2
|
||||||
sed 's/^\(complete -F _b2\) b2/\1 backblaze-b2/' -i contrib/bash_completion/b2
|
|
||||||
|
|
||||||
mkdir -p "$out/etc/bash_completion.d"
|
mkdir -p "$out/etc/bash_completion.d"
|
||||||
cp contrib/bash_completion/b2 "$out/etc/bash_completion.d/backblaze-b2"
|
cp contrib/bash_completion/b2 "$out/etc/bash_completion.d/backblaze-b2"
|
||||||
|
@ -1150,6 +1150,8 @@ in {
|
|||||||
|
|
||||||
ckcc-protocol = callPackage ../development/python-modules/ckcc-protocol { };
|
ckcc-protocol = callPackage ../development/python-modules/ckcc-protocol { };
|
||||||
|
|
||||||
|
class-registry = callPackage ../development/python-modules/class-registry { };
|
||||||
|
|
||||||
cld2-cffi = callPackage ../development/python-modules/cld2-cffi { };
|
cld2-cffi = callPackage ../development/python-modules/cld2-cffi { };
|
||||||
|
|
||||||
cleo = callPackage ../development/python-modules/cleo { };
|
cleo = callPackage ../development/python-modules/cleo { };
|
||||||
|
Loading…
Reference in New Issue
Block a user