1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{
lib,
aws-sam-translator,
buildPythonPackage,
defusedxml,
fetchFromGitHub,
jschema-to-python,
jsonpatch,
junit-xml,
mock,
networkx,
pydot,
pytestCheckHook,
pyyaml,
regex,
sarif-om,
setuptools,
sympy,
typing-extensions,
}:
buildPythonPackage rec {
pname = "cfn-lint";
version = "1.41.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aws-cloudformation";
repo = "cfn-lint";
tag = "v${version}";
hash = "sha256-AudCeFMbCQucANLLAknCKC7gzi0vvFh9c9k7ll0a1MM=";
};
build-system = [ setuptools ];
dependencies = [
aws-sam-translator
jsonpatch
networkx
pyyaml
regex
sympy
typing-extensions
];
optional-dependencies = {
graph = [ pydot ];
junit = [ junit-xml ];
sarif = [
jschema-to-python
sarif-om
];
full = lib.concatAttrValues (lib.removeAttrs optional-dependencies [ "full" ]);
};
nativeCheckInputs = [
defusedxml
mock
pytestCheckHook
]
++ optional-dependencies.full;
preCheck = ''
export PATH=$out/bin:$PATH
'';
disabledTests = [
# Requires git directory
"test_update_docs"
];
pythonImportsCheck = [ "cfnlint" ];
meta = {
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/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|