pythonPackage.aws-sam-translator: init -> 1.5.4
This commit is contained in:
parent
9f7cb7da18
commit
b7a6dbec9c
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, boto3
|
||||||
|
, enum34
|
||||||
|
, jsonschema
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aws-sam-translator";
|
||||||
|
version = "1.5.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "9d8a25e058c78d2cef5c07aec7f98cbc2070dbfc2eb6a2e102a16beafd14e3ca";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Tests are not included in the PyPI package
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
boto3
|
||||||
|
enum34
|
||||||
|
jsonschema
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/awslabs/serverless-application-model;
|
||||||
|
description = "Python library to transform SAM templates into AWS CloudFormation templates";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = [ lib.maintainers.andreabedini ];
|
||||||
|
};
|
||||||
|
}
|
@ -197,6 +197,8 @@ in {
|
|||||||
|
|
||||||
automat = callPackage ../development/python-modules/automat { };
|
automat = callPackage ../development/python-modules/automat { };
|
||||||
|
|
||||||
|
aws-sam-translator = callPackage ../development/python-modules/aws-sam-translator { };
|
||||||
|
|
||||||
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
|
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
|
||||||
|
|
||||||
# packages defined elsewhere
|
# packages defined elsewhere
|
||||||
|
Loading…
x
Reference in New Issue
Block a user