diff options
| author | Jonathan Ringer <jonringer117@gmail.com> | 2021-11-29 22:30:02 -0800 |
|---|---|---|
| committer | Jonathan Ringer <jonringer117@gmail.com> | 2021-11-30 18:52:57 -0800 |
| commit | d590b27cc6060282110920d3dbf91b684b038a63 (patch) | |
| tree | 909fb5c58d95672378de186a09fb49b4e6abae86 | |
| parent | python3Packages.sarif-om: init at 1.0.4 (diff) | |
| download | nixpkgs-d590b27cc6060282110920d3dbf91b684b038a63.tar.gz | |
python3Packages.cfn-lint: add missing deps
| -rw-r--r-- | pkgs/development/python-modules/cfn-lint/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cfn-lint/default.nix b/pkgs/development/python-modules/cfn-lint/default.nix index c9d500ac836a..4a409cb41e03 100644 --- a/pkgs/development/python-modules/cfn-lint/default.nix +++ b/pkgs/development/python-modules/cfn-lint/default.nix @@ -5,6 +5,7 @@ , aws-sam-translator , importlib-metadata , importlib-resources +, jschema-to-python , jsonpatch , jsonschema , junit-xml @@ -12,6 +13,7 @@ , pathlib2 , pyyaml , requests +, sarif-om , setuptools , six , mock @@ -37,6 +39,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ aws-sam-translator + jschema-to-python jsonpatch jsonschema junit-xml @@ -44,6 +47,7 @@ buildPythonPackage rec { pathlib2 pyyaml requests + sarif-om setuptools six ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata importlib-resources ]; @@ -70,6 +74,7 @@ buildPythonPackage rec { # Tests depend on network access (fails in getaddrinfo) "test_update_resource_specs_python_2" "test_update_resource_specs_python_3" + "test_sarif_formatter" ]; pythonImportsCheck = [ |
