b2sdk: 2.5.1 -> 2.6.0 (#355141)

This commit is contained in:
Austin Horstman 2024-11-14 13:10:54 -06:00 committed by GitHub
commit fef2609294
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@
packaging,
pdm-backend,
pyfakefs,
pytest-lazy-fixture,
pytest-lazy-fixtures,
pytest-mock,
pytestCheckHook,
pythonOlder,
@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "b2sdk";
version = "2.5.1";
version = "2.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -30,14 +30,11 @@ buildPythonPackage rec {
owner = "Backblaze";
repo = "b2-sdk-python";
rev = "refs/tags/v${version}";
hash = "sha256-oS037l5pQW/z4GX5+hb/mCUA219cGHE7lyiG8aos21k=";
hash = "sha256-nYsbcRRNh6WEelur/GvzE800Yg0h51FDhxJwBryVs4w=";
};
build-system = [ pdm-backend ];
pythonRemoveDeps = [ "setuptools" ];
dependencies =
[
annotated-types
@ -49,8 +46,7 @@ buildPythonPackage rec {
++ lib.optionals (pythonOlder "3.12") [ typing-extensions ];
nativeCheckInputs = [
pyfakefs
pytest-lazy-fixture
pytest-lazy-fixtures
pytest-mock
pytestCheckHook
tqdm
@ -81,6 +77,6 @@ buildPythonPackage rec {
homepage = "https://github.com/Backblaze/b2-sdk-python";
changelog = "https://github.com/Backblaze/b2-sdk-python/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
maintainers = with maintainers; [ pmw ];
};
}