From 7c7a25a5a9f0581f6a5bd638fd837a3c132e83a5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 14 Nov 2021 11:42:21 +0100 Subject: [PATCH] checkov: 2.0.568 -> 2.0.571 --- pkgs/development/tools/analysis/checkov/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index 7a6ced8b3062..3118946c6bf0 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -56,13 +56,13 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.0.568"; + version = "2.0.571"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = version; - sha256 = "sha256-V1YHD0+gXx5wLfhrfze6kAgF1egxXbjf4c2zEc/oT1A="; + sha256 = "sha256-cmSZHqR1BfVWXoUSJ3Et5TTdeUWklNA4egKLP4xKjw8="; }; nativeBuildInputs = with py.pkgs; [ @@ -115,6 +115,8 @@ buildPythonApplication rec { # https://github.com/bridgecrewio/checkov/blob/f03a4204d291cf47e3753a02a9b8c8d805bbd1be/.github/workflows/build.yml "integration_tests/" "tests/terraform/" + # Performance tests have no value for us + "performance_tests/test_checkov_performance.py" ]; pythonImportsCheck = [ @@ -129,6 +131,6 @@ buildPythonApplication rec { Kubernetes, Serverless framework and other infrastructure-as-code-languages. ''; license = licenses.asl20; - maintainers = with maintainers; [ anhdle14 ]; + maintainers = with maintainers; [ anhdle14 fab ]; }; }