Merge pull request #308370 from endocrimes/dani/backblaze-b2

backblaze-b2: 3.18.0 -> 3.19.1
This commit is contained in:
OTABI Tomoya 2024-05-02 10:58:31 +09:00 committed by GitHub
commit 51938d39e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

View file

@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "b2sdk";
version = "2.0.0";
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "Backblaze";
repo = "b2-sdk-python";
rev = "refs/tags/v${version}";
hash = "sha256-0/UC4O19oO8SpboiPIhvkWBA8XHpc279fl377MooK54=";
hash = "sha256-/TuPT+Y0asGGtfRNxxvpX0WkS4O4asFmIuqSdQ4I9fQ=";
};
build-system = [ pdm-backend ];
@ -60,6 +60,9 @@ buildPythonPackage rec {
# requires aws s3 auth
"test/integration/test_download.py"
"test/integration/test_upload.py"
# Requires backblaze auth
"test/integration/test_bucket.py"
];
disabledTests = [

View file

@ -10,14 +10,14 @@
python3Packages.buildPythonApplication rec {
pname = "backblaze-b2";
version = "3.18.0";
version = "3.19.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Backblaze";
repo = "B2_Command_Line_Tool";
rev = "refs/tags/v${version}";
hash = "sha256-1UXByc3jjp8GN7+aI2GBohJ0DFxgp604QOsXp5GaL4Q=";
hash = "sha256-/P1cgAC+a2YCcvbsysYdD+fEwibo+GyE0XY4A0+gMh4=";
};
nativeBuildInputs = [