2023-03-05 23:56:48 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "ospd-openvas";
|
2023-05-18 10:45:34 +00:00
|
|
|
version = "22.5.1";
|
2023-03-05 23:56:48 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "greenbone";
|
|
|
|
repo = "ospd-openvas";
|
|
|
|
rev = "refs/tags/v${version}";
|
2023-05-18 10:45:34 +00:00
|
|
|
hash = "sha256-7B/SLdOKxdFdW0ysuxgJm1xaTJuM0FPaloRn46rxY6A=";
|
2023-03-05 23:56:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pythonRelaxDeps = [
|
|
|
|
"packaging"
|
|
|
|
"python-gnupg"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
poetry-core
|
|
|
|
pythonRelaxDepsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
defusedxml
|
|
|
|
deprecated
|
|
|
|
lxml
|
|
|
|
packaging
|
|
|
|
paho-mqtt
|
|
|
|
psutil
|
|
|
|
python-gnupg
|
|
|
|
redis
|
|
|
|
sentry-sdk
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"ospd_openvas"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "OSP server implementation to allow GVM to remotely control an OpenVAS Scanner";
|
|
|
|
homepage = "https://github.com/greenbone/ospd-openvas";
|
|
|
|
changelog = "https://github.com/greenbone/ospd-openvas/blob/${version}/CHANGELOG.md";
|
|
|
|
license = licenses.agpl3Only;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|