037b8aefef
Also, added import checks to have a minimal test for the package
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pyyaml
|
|
, six
|
|
, requests
|
|
, aws-sam-translator
|
|
, importlib-metadata
|
|
, importlib-resources
|
|
, jsonpatch
|
|
, jsonschema
|
|
, pathlib2
|
|
, setuptools
|
|
, junit-xml
|
|
, networkx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cfn-lint";
|
|
version = "0.35.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "42023d89520e3a29891ec2eb4c326eef9d1f7516fe9abee8b6c97ce064187b45";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace 'importlib_resources~=1.4;python_version<"3.7" and python_version!="3.4"' 'importlib_resources;python_version<"3.7"'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
six
|
|
requests
|
|
aws-sam-translator
|
|
jsonpatch
|
|
jsonschema
|
|
pathlib2
|
|
setuptools
|
|
junit-xml
|
|
networkx
|
|
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata importlib-resources ];
|
|
|
|
# No tests included in archive
|
|
doCheck = false;
|
|
pythonImportsCheck = [
|
|
"cfnlint"
|
|
"cfnlint.conditions"
|
|
"cfnlint.core"
|
|
"cfnlint.decode.node"
|
|
"cfnlint.decode.cfn_yaml"
|
|
"cfnlint.decode.cfn_json"
|
|
"cfnlint.decorators.refactored"
|
|
"cfnlint.graph"
|
|
"cfnlint.helpers"
|
|
"cfnlint.rules"
|
|
"cfnlint.runner"
|
|
"cfnlint.template"
|
|
"cfnlint.transform"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Checks cloudformation for practices and behaviour that could potentially be improved";
|
|
homepage = "https://github.com/aws-cloudformation/cfn-python-lint";
|
|
license = licenses.mit;
|
|
};
|
|
}
|