2018-06-07 15:05:22 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-05-02 03:51:47 +01:00
|
|
|
, pythonOlder
|
2018-06-07 15:05:22 +01:00
|
|
|
, boto3
|
|
|
|
, enum34
|
|
|
|
, jsonschema
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aws-sam-translator";
|
2020-11-24 16:21:22 +00:00
|
|
|
version = "1.32.0";
|
2018-06-07 15:05:22 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-24 16:21:22 +00:00
|
|
|
sha256 = "jL+sAlKbeXA1QeJVQbAcgIaPEbD/Ko+QMrI1Ew2dVq4=";
|
2018-06-07 15:05:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Tests are not included in the PyPI package
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
boto3
|
|
|
|
jsonschema
|
|
|
|
six
|
2019-05-02 03:51:47 +01:00
|
|
|
] ++ lib.optionals (pythonOlder "3.4") [ enum34 ];
|
2018-06-07 15:05:22 +01:00
|
|
|
|
2020-11-24 16:21:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/awslabs/serverless-application-model";
|
2018-06-07 15:05:22 +01:00
|
|
|
description = "Python library to transform SAM templates into AWS CloudFormation templates";
|
2020-11-24 16:21:22 +00:00
|
|
|
license = licenses.asl20;
|
2018-06-07 15:05:22 +01:00
|
|
|
};
|
|
|
|
}
|