checkov: use nixfmt

This commit is contained in:
Fabian Affolter
2024-04-03 23:55:53 +02:00
parent 53b1b629fd
commit 8a14eed58f
@@ -1,6 +1,7 @@
{ lib
, fetchFromGitHub
, python3
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
@@ -15,9 +16,7 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-fldD2V/Qlwg6tvl3IxdLEzc2meWToIeGHQCsMM+b2vI=";
};
patches = [
./flake8-compat-5.x.patch
];
patches = [ ./flake8-compat-5.x.patch ];
pythonRelaxDeps = [
"boto3"
@@ -146,9 +145,7 @@ python3.pkgs.buildPythonApplication rec {
"dogfood_tests/test_checkov_dogfood.py"
];
pythonImportsCheck = [
"checkov"
];
pythonImportsCheck = [ "checkov" ];
postInstall = ''
chmod +x $out/bin/checkov
@@ -163,6 +160,9 @@ python3.pkgs.buildPythonApplication rec {
Kubernetes, Serverless framework and other infrastructure-as-code-languages.
'';
license = licenses.asl20;
maintainers = with maintainers; [ anhdle14 fab ];
maintainers = with maintainers; [
anhdle14
fab
];
};
}