summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-04-14 14:59:44 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 13:20:53 +0100
commitf2f8ad9cda4b657b7b93cb769f5d5ed887e028ec (patch)
treec9df288f26998a31658917086af7cdbb71ff7cb9 /gnu/packages/python-web.scm
parent7b85d007ab62139060570b3c83d8180441597b0f (diff)
gnu: Add python-aioboto3.
* gnu/packages/python-web.scm (python-aioboto3): New variable. Change-Id: I2ebc372405fabf2dc74f548625d93f99129b253e
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm40
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index e515915a40..4edee9790c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -167,6 +167,46 @@
#:use-module (guix utils)
#:use-module (srfi srfi-1))
+(define-public python-aioboto3
+ (package
+ (name "python-aioboto3")
+ (version "15.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/terricain/aioboto3")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05644x17f9sl8mv9bp8l0rjcmw5x2ssyd5z1v3xmgcspk5qs6qn8"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f ;XXX: all tests faild
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "pyproject.toml"
+ (("aiobotocore\\[boto3\\]==2.25.1")
+ "aiobotocore >= 2.25.1")))))))
+ (native-inputs
+ (list python-setuptools
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-aiobotocore
+ python-aiofiles
+ ;; [optional]
+ python-boto3
+ python-cryptography))
+ (home-page "https://github.com/terricain/aioboto3")
+ (synopsis "Async boto3 wrapper")
+ (description
+ "This package is mostly just a wrapper combining the great work of boto3
+and aiobotocore.")
+ (license license:asl2.0)))
+
(define-public python-aiocoap
(package
(name "python-aiocoap")