python3Packages.aws-sam-translator: 1.27.0 -> 1.32.0

This commit is contained in:
freezeboy 2020-11-24 17:21:22 +01:00
parent a115355b20
commit b1611c8158

View file

@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "aws-sam-translator";
version = "1.31.0";
version = "1.32.0";
src = fetchPypi {
inherit pname version;
sha256 = "3a1d73d098161e60966b0d53bb310c98e4f66101688cce3d1697903643782d79";
sha256 = "jL+sAlKbeXA1QeJVQbAcgIaPEbD/Ko+QMrI1Ew2dVq4=";
};
# Tests are not included in the PyPI package
@ -26,9 +26,9 @@ buildPythonPackage rec {
six
] ++ lib.optionals (pythonOlder "3.4") [ enum34 ];
meta = {
meta = with lib; {
homepage = "https://github.com/awslabs/serverless-application-model";
description = "Python library to transform SAM templates into AWS CloudFormation templates";
license = lib.licenses.asl20;
license = licenses.asl20;
};
}