tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
kube-hunter: fix version handling
Fabian Affolter
2 years ago
b7df45f1
fe2ecaf7
+7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
kube-hunter
default.nix
+7
pkgs/tools/security/kube-hunter/default.nix
···
14
14
sha256 = "sha256-+M8P/VSF9SKPvq+yNPjokyhggY7hzQ9qLLhkiTNbJls=";
15
15
};
16
16
17
17
+
SETUPTOOLS_SCM_PRETEND_VERSION = version;
18
18
+
17
19
nativeBuildInputs = with python3.pkgs; [
18
20
setuptools-scm
19
21
];
···
45
47
46
48
pythonImportsCheck = [
47
49
"kube_hunter"
50
50
+
];
51
51
+
52
52
+
disabledTests = [
53
53
+
# Test is out-dated
54
54
+
"test_K8sCveHunter"
48
55
];
49
56
50
57
meta = with lib; {