python.pkgs.cfn-lint: init at 0.19.1

This commit is contained in:
Frederik Rietdijk 2019-05-01 10:59:49 +02:00
parent a3990c9f6d
commit 09f27e38b6
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyyaml
, six
, requests
, aws-sam-translator
, jsonpatch
, jsonschema
, pathlib2
}:
buildPythonPackage rec {
pname = "cfn-lint";
version = "0.19.1";
src = fetchPypi {
inherit pname version;
sha256 = "5a723ff791fc23aced78e9cde28f18f9eeae9a24f91db2b7a20f7aa837a613b3";
};
propagatedBuildInputs = [
pyyaml
six
requests
aws-sam-translator
jsonpatch
jsonschema
pathlib2
];
# No tests included in archive
doCheck = false;
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;
};
}

View File

@ -1399,6 +1399,8 @@ in {
cfgv = callPackage ../development/python-modules/cfgv { };
cfn-lint = callPackage ../development/python-modules/cfn-lint { };
cftime = callPackage ../development/python-modules/cftime {};
cjson = callPackage ../development/python-modules/cjson { };