python312Packages.b2sdk: 2.7.0 -> 2.8.1, backblaze-b2: 4.3.1 -> 4.3.2 (#376487)

This commit is contained in:
OTABI Tomoya
2025-05-11 14:36:23 +09:00
committed by GitHub
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -11,14 +11,14 @@
python3Packages.buildPythonApplication rec {
pname = "backblaze-b2";
version = "4.3.1";
version = "4.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "Backblaze";
repo = "B2_Command_Line_Tool";
tag = "v${version}";
hash = "sha256-uWANUb7AV9ADWJ7Ut8qloEhgoXJ62yTSbXrCHVY1tFE=";
hash = "sha256-I6baipQDQft5bi352W9YXFAVuVqIkEqEfmD9iP2LBqs=";
};
nativeBuildInputs = with python3Packages; [
@@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "b2sdk";
version = "2.7.0";
version = "2.8.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "Backblaze";
repo = "b2-sdk-python";
tag = "v${version}";
hash = "sha256-QY2/uWCnIlOHo5wTLxu2Pvh2oNPWRcyDL5TpnZHob7I=";
hash = "sha256-KUz/OaFZwJPVNCZ1j73SrpWknQmrvwfr5MLVYxOojZc=";
};
build-system = [ pdm-backend ];
@@ -75,7 +75,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Client library and utilities for access to B2 Cloud Storage (backblaze)";
homepage = "https://github.com/Backblaze/b2-sdk-python";
changelog = "https://github.com/Backblaze/b2-sdk-python/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/Backblaze/b2-sdk-python/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ pmw ];
};