notus-scanner: refactor

This commit is contained in:
Fabian Affolter 2024-04-22 22:56:46 +02:00
parent 4fc2a318a7
commit d2213b78e8
1 changed files with 6 additions and 3 deletions

View File

@ -15,13 +15,13 @@
buildPythonPackage rec {
pname = "notus-scanner";
version = "22.6.3";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "greenbone";
repo = pname;
repo = "notus-scanner";
rev = "refs/tags/v${version}";
hash = "sha256-LYYof/s0OvXMbEH7jyFIymUVrWYUd/6lychIzfPlylc=";
};
@ -31,8 +31,11 @@ buildPythonPackage rec {
"python-gnupg"
];
nativeBuildInputs = [
build-system = [
poetry-core
];
nativeBuildInputs = [
pythonRelaxDepsHook
];