From c5cf47ccffd9343c30a4a957aa8cb27e218acfe4 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 19 Sep 2023 23:27:34 +0200 Subject: [PATCH] gnu: Add python-lambda-4dn. * gnu/packages/web.scm (python-lambda-4dn): New variable. --- gnu/packages/web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 1b4eafeab8..e9c6f1443c 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -98,6 +98,7 @@ (define-module (gnu packages web) #:use-module (guix build-system go) #:use-module (guix build-system meson) #:use-module (guix build-system perl) + #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (guix build-system scons) #:use-module (guix build-system trivial) @@ -4807,6 +4808,31 @@ (define-public perl-www-robotrules their web site.") (home-page "https://metacpan.org/release/WWW-RobotRules"))) +(define-public python-lambda-4dn + (package + (name "python-lambda-4dn") + (version "0.12.3") + (source (origin + (method url-fetch) + (uri (pypi-uri "python-lambda-4dn" version)) + (sha256 + (base32 + "1p5i8wsi8q5fpq63i7n7ri1w1lnh4gpn17f88vhkbh14aah5wxj1")))) + (properties '(("upstream-name" . "python-lambda-4dn"))) + (build-system pyproject-build-system) + (propagated-inputs + (list python-boto3 python-botocore python-docutils + python-six)) + (home-page "https://github.com/4dn-dcic/python-lambda") + (synopsis + "Toolkit for developing and deploying Python code in AWS Lambda") + (description + "This is a toolset for developing and deploying serverless Python code in +AWS Lambda. This is a fork of Nick Ficano's Python-lambda package. It is +frozen for the needs of projects at the 4D Nucleome Data Coordination and +Integration Center (4DN-DCIC).") + (license (list license:isc license:expat)))) + (define-public python-feedparser (package (name "python-feedparser")