From c6398cbf92f04ae9303f4b5566682d48b4378fe8 Mon Sep 17 00:00:00 2001 From: Philip White Date: Sun, 10 Nov 2024 21:10:05 -0800 Subject: [PATCH 1/2] b2sdk: 2.5.1 -> 2.6.0 --- pkgs/development/python-modules/b2sdk/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index df3a868e2e85..1be6be4e9f13 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 From 98d7b852a55b5632fd6aead013ffe795d0a25060 Mon Sep 17 00:00:00 2001 From: Philip White Date: Wed, 13 Nov 2024 22:11:44 -0800 Subject: [PATCH 2/2] b2sdk: add maintainer pmw --- pkgs/development/python-modules/b2sdk/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/b2sdk/default.nix b/pkgs/development/python-modules/b2sdk/default.nix index 1be6be4e9f13..7ae608bd72fb 100644 --- a/pkgs/development/python-modules/b2sdk/default.nix +++ b/pkgs/development/python-modules/b2sdk/default.nix @@ -77,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 ]; }; }