diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index df3a868e2e85..7ae608bd72fb 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -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 ]; }; }