15 buildPythonPackage rec {
16 pname = "notus-scanner";
20 disabled = pythonOlder "3.9";
22 src = fetchFromGitHub {
24 repo = "notus-scanner";
26 hash = "sha256-PPwQjZIKSQ1OmyYJ8ErkqdbHZfH4iHPMiDdKZ3imBwo=";
35 build-system = [ poetry-core ];
37 propagatedBuildInputs = [
42 ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
44 nativeCheckInputs = [ pytestCheckHook ];
46 pythonImportsCheck = [ "notus.scanner" ];
49 description = "Helper to create results from local security checks";
50 homepage = "https://github.com/greenbone/notus-scanner";
51 changelog = "https://github.com/greenbone/notus-scanner/releases/tag/v${version}";
52 license = with licenses; [ agpl3Plus ];
53 maintainers = with maintainers; [ fab ];