From 6b19f0207ed7d8a892e8231db65b609e378ae4b5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 11 Jan 2026 13:27:02 +0000 Subject: [PATCH 1/2] python3Packages.python-gvm: 26.6.0 -> 26.9.0 --- pkgs/development/python-modules/python-gvm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-gvm/default.nix b/pkgs/development/python-modules/python-gvm/default.nix index 6f4ed6134718..7730649d7e82 100644 --- a/pkgs/development/python-modules/python-gvm/default.nix +++ b/pkgs/development/python-modules/python-gvm/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "python-gvm"; - version = "26.6.0"; + version = "26.9.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "greenbone"; repo = "python-gvm"; tag = "v${version}"; - hash = "sha256-n/FYPCJ0Fw2WBLA6dAYUzgwDlol1DRgbCywsvMARTWE="; + hash = "sha256-9aqX6/Xb0E4+Ar95NwaCXxPTF0m9zLgzQSSacQqaPyc="; }; build-system = [ poetry-core ]; From 7008502ed0774b3465c4f20a29fdc713e3e51f8f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 11 Jan 2026 19:08:27 +0100 Subject: [PATCH 2/2] python313Pacakges.python-gvm: modernize --- .../python-modules/python-gvm/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/python-gvm/default.nix b/pkgs/development/python-modules/python-gvm/default.nix index 7730649d7e82..c2a5e831f105 100644 --- a/pkgs/development/python-modules/python-gvm/default.nix +++ b/pkgs/development/python-modules/python-gvm/default.nix @@ -9,21 +9,18 @@ poetry-core, pontos, pytestCheckHook, - pythonOlder, typing-extensions, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "python-gvm"; version = "26.9.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "greenbone"; repo = "python-gvm"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-9aqX6/Xb0E4+Ar95NwaCXxPTF0m9zLgzQSSacQqaPyc="; }; @@ -55,8 +52,8 @@ buildPythonPackage rec { meta = { description = "Collection of APIs that help with remote controlling a Greenbone Security Manager"; homepage = "https://github.com/greenbone/python-gvm"; - changelog = "https://github.com/greenbone/python-gvm/releases/tag/${src.tag}"; - license = with lib.licenses; [ gpl3Plus ]; + changelog = "https://github.com/greenbone/python-gvm/releases/tag/${finalAttrs.src.tag}"; + license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ fab ]; }; -} +})