about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2021-11-16 08:37:14 +0100
committerGitHub <noreply@github.com>2021-11-16 08:37:14 +0100
commitf1de43cf1f3c8a86f35c30b18b411c49114aa0f3 (patch)
treeecbc1c24c8ccc5593b492246bf65a54887465e40 /pkgs
parent4c708280a67319234bd94b3b7431f11bdea00758 (diff)
parent757d972916277cb3fe33643eb4dadb5eb72be0b6 (diff)
Merge pull request #146182 from fabaff/bump-checkov
checkov: 2.0.571 -> 2.0.574
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/analysis/checkov/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix
index 3118946c6bf0c..0bf46ed1b13ef 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.571";
+  version = "2.0.574";
 
   src = fetchFromGitHub {
     owner = "bridgecrewio";
     repo = pname;
     rev = version;
-    sha256 = "sha256-cmSZHqR1BfVWXoUSJ3Et5TTdeUWklNA4egKLP4xKjw8=";
+    sha256 = "sha256-DM7fPwJcWEyOu55ThK/jP9jIUbiVCfEtltSP7puCoxQ=";
   };
 
   nativeBuildInputs = with py.pkgs; [
@@ -70,6 +70,9 @@ buildPythonApplication rec {
   ];
 
   propagatedBuildInputs = with py.pkgs; [
+    aiodns
+    aiohttp
+    aiomultiprocess
     bc-python-hcl2
     boto3
     cachetools
@@ -98,7 +101,11 @@ buildPythonApplication rec {
   ];
 
   checkInputs = with py.pkgs; [
+    aioresponses
     jsonschema
+    mock
+    pytest-asyncio
+    pytest-mock
     pytest-xdist
     pytestCheckHook
   ];