Merge pull request #224706 from fabaff/notus-scanner-bump

python310Packages.notus-scanner: unstable-2021-09-05 -> 22.4.5
This commit is contained in:
Fabian Affolter 2023-04-05 08:47:27 +02:00 committed by GitHub
commit 5d722657c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,20 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, paho-mqtt
, poetry-core
, psutil
, pytestCheckHook
, python-gnupg
, pythonOlder
, pythonRelaxDepsHook
, sentry-sdk
, tomli
}:
buildPythonPackage rec {
pname = "notus-scanner";
version = "unstable-2021-09-05";
version = "22.4.5";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -19,37 +22,40 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "greenbone";
repo = pname;
rev = "049f9a5e6439e4e5113e3b8f30b25ead12d42a56";
sha256 = "1fjxyn8wg2kf6xy3pbh7d7yn20dk529p03xpqyz7s40n9nsxhnza";
rev = "refs/tags/v${version}";
hash = "sha256-bGuD3uDteXQdj3pfnRemKWffWVbQSHda/RrfhAXB3fM=";
};
pythonRelaxDeps = [
"python-gnupg"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
paho-mqtt
psutil
python-gnupg
sentry-sdk
] ++ lib.optionals (pythonOlder "3.11") [
tomli
];
nativeCheckInputs = [
pytestCheckHook
];
patches = [
# Switch to poetry-core, https://github.com/greenbone/notus-scanner/pull/31
(fetchpatch {
name = "switch-to-poetry-core.patch";
url = "https://github.com/greenbone/notus-scanner/commit/b52eea317faca30d411096044f9e5ea20b58da65.patch";
sha256 = "0q11aslhva47kkpsnpayra7spa849j894vqv34pjqhcnlyipqw6d";
})
pythonImportsCheck = [
"notus.scanner"
];
pythonImportsCheck = [ "notus.scanner" ];
meta = with lib; {
description = "Helper to create results from local security checks";
homepage = "https://github.com/greenbone/notus-scanner";
changelog = "https://github.com/greenbone/notus-scanner/releases/tag/v${version}";
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ fab ];
};