python27Packages.aws-sam-translator: 1.10.0 -> 1.11.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python2.7-aws-sam-translator/versions
This commit is contained in:
R. RyanTM 2019-05-01 19:51:47 -07:00 committed by Mario Rodas
parent 047400d753
commit 952122b70e
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -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;