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