Merge pull request #60709 from r-ryantm/auto-update/python2.7-aws-sam-translator

python27Packages.aws-sam-translator: 1.10.0 -> 1.11.0
This commit is contained in:
Mario Rodas 2019-05-11 04:24:03 -05:00 committed by GitHub
commit c6145373e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pythonOlder
, boto3
, enum34
, jsonschema
@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "aws-sam-translator";
version = "1.10.0";
version = "1.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "0axr4598b1h9kyb5mv104cpn5q667s0g1wkkbqzj66vrqsaa07qf";
sha256 = "db872c43bdfbbae9fc8c9201e6a7aeb9a661cda116a94708ab0577b46a38b962";
};
# Tests are not included in the PyPI package
@ -22,10 +22,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [
boto3
enum34
jsonschema
six
];
] ++ lib.optionals (pythonOlder "3.4") [ enum34 ];
meta = {
homepage = https://github.com/awslabs/serverless-application-model;