[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/23: gnu: Add python-aws-sam-translator.
From: |
guix-commits |
Subject: |
18/23: gnu: Add python-aws-sam-translator. |
Date: |
Fri, 20 Nov 2020 19:23:14 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit bfed77abea77ab5b1738f32155822b7f09bcfd2c
Author: Marius Bakke <mbakke@fastmail.com>
AuthorDate: Mon Aug 19 15:04:43 2019 +0200
gnu: Add python-aws-sam-translator.
* gnu/packages/python-web.scm (python-aws-sam-translator): New public
variable.
---
gnu/packages/python-web.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 2ba69ba..1afd614 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -277,6 +277,41 @@ WSGI. This package includes libraries for implementing
ASGI servers.")
;; looks like the user can choose a license.
(license (list license:gpl3+ license:lgpl3+ license:expat))))
+(define-public python-aws-sam-translator
+ (package
+ (name "python-aws-sam-translator")
+ (version "1.30.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "aws-sam-translator" version))
+ (sha256
+ (base32
+ "0d9ppd94x2kw404m49ajswmmxgdngbs4p5ajyrdvnlivfzqbv7dx"))))
+ (build-system python-build-system)
+ (arguments
+ `(;; XXX: Tests are not distributed with the PyPI archive, and would
+ ;; introduce a circular dependency on python-cfn-lint.
+ #:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'unpack 'loosen-requirements
+ (lambda _
+ ;; The package needlessly specifies exact versions
+ ;; of dependencies, when it works fine with others.
+ (substitute* "requirements/base.txt"
+ (("(.*)(~=[0-9\\.]+)" all package version)
+ package))
+ #t)))))
+ (propagated-inputs
+ `(("python-boto3" ,python-boto3)
+ ("python-jsonschema" ,python-jsonschema)
+ ("python-six" ,python-six)))
+ (home-page "https://github.com/awslabs/serverless-application-model")
+ (synopsis "Transform AWS SAM templates into AWS CloudFormation templates")
+ (description
+ "AWS SAM Translator is a library that transform @dfn{Serverless
Application
+Model} (SAM) templates into AWS CloudFormation templates.")
+ (license license:asl2.0)))
+
(define-public python-aws-xray-sdk
(package
(name "python-aws-xray-sdk")
- 11/23: gnu: python-docker: Propagate runtime dependency., (continued)
- 11/23: gnu: python-docker: Propagate runtime dependency., guix-commits, 2020/11/20
- 14/23: gnu: Add python-jsonpickle., guix-commits, 2020/11/20
- 16/23: gnu: Add python-jose., guix-commits, 2020/11/20
- 19/23: gnu: python-jsonpatch: Propagate required input., guix-commits, 2020/11/20
- 20/23: gnu: Add python-cfn-lint., guix-commits, 2020/11/20
- 13/23: gnu: Add python-sshpubkeys., guix-commits, 2020/11/20
- 12/23: gnu: Add python-boto3., guix-commits, 2020/11/20
- 17/23: gnu: Add python-boto., guix-commits, 2020/11/20
- 21/23: gnu: Add python-junit-xml., guix-commits, 2020/11/20
- 15/23: gnu: Add python-aws-xray-sdk., guix-commits, 2020/11/20
- 18/23: gnu: Add python-aws-sam-translator.,
guix-commits <=
- 23/23: gnu: Add python-moto., guix-commits, 2020/11/20
- 22/23: gnu: Add python-flask-cors., guix-commits, 2020/11/20