mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
python.pkgs.cfn-lint: init at 0.19.1
This commit is contained in:
parent
a3990c9f6d
commit
09f27e38b6
40
pkgs/development/python-modules/cfn-lint/default.nix
Normal file
40
pkgs/development/python-modules/cfn-lint/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user