blob: 615ff3c2693fdc1bfc2c1111442c334dc7eb4ed0 (
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
|
{
lib,
stdenv,
buildPythonPackage,
defusedxml,
deprecated,
fetchFromGitHub,
lxml,
paramiko,
psutil,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ospd";
version = "21.4.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "greenbone";
repo = "ospd";
tag = "v${version}";
hash = "sha256-dZgs+G2vJQIKnN9xHcNeNViG7mOIdKb+Ms2AKE+FC4M=";
};
propagatedBuildInputs = [
defusedxml
deprecated
lxml
paramiko
psutil
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ospd" ];
meta = {
description = "Framework for vulnerability scanners which support OSP";
homepage = "https://github.com/greenbone/ospd";
changelog = "https://github.com/greenbone/ospd/releases/tag/v${version}";
license = with lib.licenses; [ agpl3Plus ];
maintainers = with lib.maintainers; [ fab ];
broken = stdenv.hostPlatform.isDarwin;
};
}
|