Unverified Commit 4738dbcb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.python-gvm: 26.6.0 -> 26.9.0 (#454763)

parents 2c313699 7008502e
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -12,16 +12,16 @@
  typing-extensions,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "python-gvm";
  version = "26.6.0";
  version = "26.9.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "greenbone";
    repo = "python-gvm";
    tag = "v${version}";
    hash = "sha256-n/FYPCJ0Fw2WBLA6dAYUzgwDlol1DRgbCywsvMARTWE=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-9aqX6/Xb0E4+Ar95NwaCXxPTF0m9zLgzQSSacQqaPyc=";
  };

  build-system = [ poetry-core ];
@@ -52,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 ];
  };
}
})