From 54b3c6f2eabe3c5452d63a460d8a28143b8dabb4 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 6 Apr 2024 19:09:43 +0200 Subject: [PATCH 1/3] python3Packages.spsdk: 2.1.0 -> 2.1.1 https://github.com/nxp-mcuxpresso/spsdk/releases/tag/2.1.1 Relaxes even more the dependencies. Signed-off-by: Raito Bezarius --- pkgs/development/python-modules/spsdk/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/spsdk/default.nix b/pkgs/development/python-modules/spsdk/default.nix index 0764e6c6ccd0..b64ef4a3d910 100644 --- a/pkgs/development/python-modules/spsdk/default.nix +++ b/pkgs/development/python-modules/spsdk/default.nix @@ -39,14 +39,14 @@ buildPythonPackage rec { pname = "spsdk"; - version = "2.1.0"; + version = "2.1.1"; pyproject = true; src = fetchFromGitHub { owner = "nxp-mcuxpresso"; repo = "spsdk"; rev = "refs/tags/${version}"; - hash = "sha256-ZXNqger5WBk2AjTszJLmemYDPClUPy+kNtBWSPcTDro="; + hash = "sha256-cWz2zML/gb9l2C5VEBti+nX3ZLyGbLFyLZGjk5GfTJw="; }; nativeBuildInputs = [ @@ -56,6 +56,9 @@ buildPythonPackage rec { pythonRelaxDeps = [ "click" + "cryptography" + "platformdirs" + "typing-extensions" ]; propagatedBuildInputs = [ From fb536c56058f40c3d3c5dff395d2ce3937a54f16 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 6 Apr 2024 19:10:54 +0200 Subject: [PATCH 2/3] python3Packages.pytest-notebook: disable more tests Those tests are not passing because of: ``` E pytest.PytestRemovedIn8Warning: The (fspath: py.path.local) argument to JupyterNbCollector is deprecated. Please use the (path: pathlib.Path) argument instead. ``` Signed-off-by: Raito Bezarius --- pkgs/development/python-modules/pytest-notebook/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pytest-notebook/default.nix b/pkgs/development/python-modules/pytest-notebook/default.nix index b20006641057..104c33453971 100644 --- a/pkgs/development/python-modules/pytest-notebook/default.nix +++ b/pkgs/development/python-modules/pytest-notebook/default.nix @@ -70,6 +70,10 @@ buildPythonPackage rec { "test_diff_to_string" "test_execute_notebook_with_coverage" "test_regression_coverage" + "test_collection" + "test_setup_with_skip_meta" + "test_run_fail" + "test_run_pass_with_meta" ]; meta = { From 4c1c80ef1acbb2b6ca164154a8bfe4107148f660 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 6 Apr 2024 19:21:31 +0200 Subject: [PATCH 3/3] pynitrokey: 0.4.45 -> 0.4.46 https://github.com/Nitrokey/pynitrokey/releases/tag/v0.4.46 Signed-off-by: Raito Bezarius --- pkgs/development/python-modules/pynitrokey/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pynitrokey/default.nix b/pkgs/development/python-modules/pynitrokey/default.nix index 58f54f148866..ad7502b69551 100644 --- a/pkgs/development/python-modules/pynitrokey/default.nix +++ b/pkgs/development/python-modules/pynitrokey/default.nix @@ -30,7 +30,7 @@ let pname = "pynitrokey"; - version = "0.4.45"; + version = "0.4.46"; mainProgram = "nitropy"; in @@ -40,7 +40,7 @@ buildPythonPackage { src = fetchPypi { inherit pname version; - hash = "sha256-iY4ThrmXP7pEjTYYU4lePVAbuJGTdHX3iKswXzuf7W8="; + hash = "sha256-y+D90Ja3YkB6WLQuyGOhV56g6ey7iITzNtOCxpRkzXE="; }; propagatedBuildInputs = [ @@ -101,7 +101,7 @@ buildPythonPackage { homepage = "https://github.com/Nitrokey/pynitrokey"; changelog = "https://github.com/Nitrokey/pynitrokey/releases/tag/v${version}"; license = with licenses; [ asl20 mit ]; - maintainers = with maintainers; [ frogamic ]; + maintainers = with maintainers; [ frogamic raitobezarius ]; inherit mainProgram; }; }