Unverified Commit 9e19e8fb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.gvm-tools: 25.4.0 -> 25.4.1 (#452913)

parents 689a0c5d 6a0344bb
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -5,22 +5,18 @@
  poetry-core,
  pytestCheckHook,
  python-gvm,
  pythonAtLeast,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "gvm-tools";
  version = "25.4.0";
  version = "25.4.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "greenbone";
    repo = "gvm-tools";
    tag = "v${version}";
    hash = "sha256-d5/oVQxhZGxGXwdGMojGQ4SiMUiQfxgcR2oF5Lq1+RM=";
    hash = "sha256-BYkpHUSw9MU9SpJiQf1ZgG1ZCfRxyAyX/K+53wgnKoQ=";
  };

  __darwinAllowLocalNetworking = true;
@@ -34,8 +30,8 @@ buildPythonPackage rec {
  disabledTests = [
    # Don't test sending
    "SendTargetTestCase"
  ]
  ++ lib.optionals (pythonAtLeast "3.10") [ "HelpFormattingParserTestCase" ];
    "HelpFormattingParserTestCase"
  ];

  pythonImportsCheck = [ "gvmtools" ];

@@ -43,7 +39,7 @@ buildPythonPackage rec {
    description = "Collection of APIs that help with remote controlling a Greenbone Security Manager";
    homepage = "https://github.com/greenbone/gvm-tools";
    changelog = "https://github.com/greenbone/gvm-tools/releases/tag/${src.tag}";
    license = with licenses; [ gpl3Plus ];
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ fab ];
  };
}