Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

kube-hunter: fix version handling

+7
+7
pkgs/tools/security/kube-hunter/default.nix
··· 14 14 sha256 = "sha256-+M8P/VSF9SKPvq+yNPjokyhggY7hzQ9qLLhkiTNbJls="; 15 15 }; 16 16 17 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 18 + 17 19 nativeBuildInputs = with python3.pkgs; [ 18 20 setuptools-scm 19 21 ]; ··· 45 47 46 48 pythonImportsCheck = [ 47 49 "kube_hunter" 50 + ]; 51 + 52 + disabledTests = [ 53 + # Test is out-dated 54 + "test_K8sCveHunter" 48 55 ]; 49 56 50 57 meta = with lib; {