Merge pull request #299757 from corngood/backblaze-b2

backblaze-b2: 3.15.0 -> 3.17.0
This commit is contained in:
David McFarland 2024-03-29 10:22:19 -03:00 committed by GitHub
commit 6f97e21691
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 34 deletions

View File

@ -19,7 +19,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "b2sdk"; pname = "b2sdk";
version = "1.32.0"; version = "1.33.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -28,7 +28,7 @@ buildPythonPackage rec {
owner = "Backblaze"; owner = "Backblaze";
repo = "b2-sdk-python"; repo = "b2-sdk-python";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-xBLMvH51zbrSuBOtMxLeQJt7Wv31OcxBbD72EuLHzuU="; hash = "sha256-eMFgsjEb0DMTLqG+8IZru1dEAuKZW4dEszrznZxR+mc=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -1,32 +1,30 @@
{ lib, python3Packages, fetchPypi, installShellFiles, testers, backblaze-b2 { lib
, python3Packages
, fetchFromGitHub
, installShellFiles
, testers
, backblaze-b2
# executable is renamed to backblaze-b2 by default, to avoid collision with boost's 'b2' # executable is renamed to backblaze-b2 by default, to avoid collision with boost's 'b2'
, execName ? "backblaze-b2" , execName ? "backblaze-b2"
}: }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "backblaze-b2"; pname = "backblaze-b2";
version = "3.15.0"; version = "3.17.0";
format = "setuptools"; format = "pyproject";
src = fetchPypi { src = fetchFromGitHub {
inherit version; owner = "Backblaze";
pname = "b2"; repo = "B2_Command_Line_Tool";
hash = "sha256-10c2zddALy7+CGxhjUC6tMLQcZ3WmLeRY1bNKWunAys="; rev = "v${version}";
hash = "sha256-Xj7RNe6XM2atijhVasILWRdTzu6xuKBzMllM1z1mFLY=";
}; };
postPatch = ''
substituteInPlace requirements.txt \
--replace 'phx-class-registry==4.0.5' 'phx-class-registry'
substituteInPlace requirements.txt \
--replace 'tabulate==0.8.10' 'tabulate'
substituteInPlace setup.py \
--replace 'setuptools_scm<6.0' 'setuptools_scm'
'';
nativeBuildInputs = [ nativeBuildInputs = [
installShellFiles installShellFiles
python3Packages.setuptools-scm ] ++ (with python3Packages; [
]; pdm-backend
]);
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
argcomplete argcomplete
@ -46,31 +44,24 @@ python3Packages.buildPythonApplication rec {
backoff backoff
more-itertools more-itertools
pexpect pexpect
pytestCheckHook
# backblaze-b2 requires pytest 7 to complete tests. pytest-xdist
(pytestCheckHook.override { pytest = pytest_7; })
]; ];
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME=$(mktemp -d)
''; '';
disabledTests = [
# require network
"test_files_headers"
"test_integration"
# fixed by https://github.com/Backblaze/B2_Command_Line_Tool/pull/915
"TestRmConsoleTool"
];
disabledTestPaths = [ disabledTestPaths = [
# requires network # requires network
"test/integration/test_b2_command_line.py" "test/integration/test_b2_command_line.py"
"test/integration/test_tqdm_closer.py"
# it's hard to make it work on nix # it's hard to make it work on nix
"test/integration/test_autocomplete.py" "test/integration/test_autocomplete.py"
"test/unit/console_tool" "test/unit/test_console_tool.py"
# this one causes successive tests to fail
"test/unit/_cli/test_autocomplete_cache.py"
]; ];
postInstall = lib.optionalString (execName != "b2") '' postInstall = lib.optionalString (execName != "b2") ''
@ -88,7 +79,9 @@ python3Packages.buildPythonApplication rec {
}).overrideAttrs (old: { }).overrideAttrs (old: {
# workaround the error: Permission denied: '/homeless-shelter' # workaround the error: Permission denied: '/homeless-shelter'
# backblaze-b2 fails to create a 'b2' directory under the XDG config path # backblaze-b2 fails to create a 'b2' directory under the XDG config path
HOME = "$(mktemp -d)"; preHook = ''
export HOME=$(mktemp -d)
'';
}); });
meta = with lib; { meta = with lib; {