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:
commit
c6145373e5
1 changed files with 4 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, isPy3k
|
, pythonOlder
|
||||||
, boto3
|
, boto3
|
||||||
, enum34
|
, enum34
|
||||||
, jsonschema
|
, jsonschema
|
||||||
|
@ -10,11 +10,11 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aws-sam-translator";
|
pname = "aws-sam-translator";
|
||||||
version = "1.10.0";
|
version = "1.11.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0axr4598b1h9kyb5mv104cpn5q667s0g1wkkbqzj66vrqsaa07qf";
|
sha256 = "db872c43bdfbbae9fc8c9201e6a7aeb9a661cda116a94708ab0577b46a38b962";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Tests are not included in the PyPI package
|
# Tests are not included in the PyPI package
|
||||||
|
@ -22,10 +22,9 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
boto3
|
boto3
|
||||||
enum34
|
|
||||||
jsonschema
|
jsonschema
|
||||||
six
|
six
|
||||||
];
|
] ++ lib.optionals (pythonOlder "3.4") [ enum34 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/awslabs/serverless-application-model;
|
homepage = https://github.com/awslabs/serverless-application-model;
|
||||||
|
|
Loading…
Reference in a new issue