blob: b84f1d47b8529fc8d086a3c51a37b77afa1cca8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
paho-mqtt,
poetry-core,
psutil,
pytestCheckHook,
python-gnupg,
pythonOlder,
sentry-sdk,
tomli,
}:
buildPythonPackage rec {
pname = "notus-scanner";
version = "22.7.2";
pyproject = true;
src = fetchFromGitHub {
owner = "greenbone";
repo = "notus-scanner";
tag = "v${version}";
hash = "sha256-JKDnqgEBzEIOI3WIh+SOycACFaYZoZHy7tPFirltDiM=";
};
pythonRelaxDeps = [
"packaging"
"psutil"
"python-gnupg"
];
build-system = [ poetry-core ];
propagatedBuildInputs = [
paho-mqtt
psutil
python-gnupg
sentry-sdk
]
++ lib.optionals (pythonOlder "3.11") [ tomli ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "notus.scanner" ];
meta = {
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/${src.tag}";
license = with lib.licenses; [ agpl3Plus ];
maintainers = with lib.maintainers; [ fab ];
};
}
|