fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
84 lines
1.7 KiB
Nix
84 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
aws-sam-translator,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
jschema-to-python,
|
|
jsonpatch,
|
|
jsonschema,
|
|
junit-xml,
|
|
mock,
|
|
networkx,
|
|
pydot,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
regex,
|
|
sarif-om,
|
|
setuptools,
|
|
sympy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cfn-lint";
|
|
version = "0.86.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws-cloudformation";
|
|
repo = "cfn-lint";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-QkxCQ8YPRZSqAidmPus4JCgzez6uuRWvcaqfZsvugtY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aws-sam-translator
|
|
jschema-to-python
|
|
jsonpatch
|
|
jsonschema
|
|
junit-xml
|
|
networkx
|
|
networkx
|
|
pyyaml
|
|
regex
|
|
sarif-om
|
|
sympy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pydot
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export PATH=$out/bin:$PATH
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Requires git directory
|
|
"test_update_docs"
|
|
# Tests depend on network access (fails in getaddrinfo)
|
|
"test_update_resource_specs_python_2"
|
|
"test_update_resource_specs_python_3"
|
|
"test_sarif_formatter"
|
|
# Some CLI tests fails
|
|
"test_bad_config"
|
|
"test_override_parameters"
|
|
"test_positional_template_parameters"
|
|
"test_template_config"
|
|
];
|
|
|
|
pythonImportsCheck = [ "cfnlint" ];
|
|
|
|
meta = with lib; {
|
|
description = "Checks cloudformation for practices and behaviour that could potentially be improved";
|
|
mainProgram = "cfn-lint";
|
|
homepage = "https://github.com/aws-cloudformation/cfn-lint";
|
|
changelog = "https://github.com/aws-cloudformation/cfn-lint/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|