Merge pull request #145904 from fabaff/bump-checkov

checkov: 2.0.568 -> 2.0.571
This commit is contained in:
Fabian Affolter 2021-11-15 08:43:56 +01:00 committed by GitHub
commit 38dfa16123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}