python3Packages.b2sdk: 2.10.2 -> 2.10.3

This commit is contained in:
phaer
2026-02-25 23:18:41 +01:00
parent b8e06a901b
commit ffbfb58cc3
@@ -4,8 +4,8 @@
fetchFromGitHub,
logfury,
annotated-types,
packaging,
pdm-backend,
hatchling,
hatch-vcs,
pytest-lazy-fixtures,
pytest-mock,
pytest-timeout,
@@ -14,27 +14,30 @@
pythonOlder,
requests,
responses,
tenacity,
tqdm,
typing-extensions,
}:
buildPythonPackage rec {
pname = "b2sdk";
version = "2.10.2";
version = "2.10.3";
pyproject = true;
src = fetchFromGitHub {
owner = "Backblaze";
repo = "b2-sdk-python";
tag = "v${version}";
hash = "sha256-RWHD1ARPSKHmGKY0xdCBn3Qj4GxAfn4o8eacMQ5RT1k=";
hash = "sha256-Gu4MRfjNWuwEFn13U49dEndWA/HNPwrQdX9VEz1ny+M=";
};
build-system = [ pdm-backend ];
build-system = [
hatchling
hatch-vcs
];
dependencies = [
annotated-types
packaging
logfury
requests
]
@@ -46,6 +49,7 @@ buildPythonPackage rec {
pytest-timeout
pytestCheckHook
responses
tenacity
tqdm
];