summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-01-01 21:53:16 +0100
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:29 +0100
commit4a11566f4f5ef48fdf99904ac1bbe1f7bc155386 (patch)
tree1dbcf14a7d263d5b7d84c03aa360a35e3a267b2d /gnu/packages/python-web.scm
parentebfd6af972d853eb447f0e4d5d60f598503fc82f (diff)
gnu: Add python-aiohappyeyeballs.
* gnu/packages/python-web.scm (python-aiohappyeyeballs): New variable. Change-Id: Ic453f1c6e67f181abf9d32ee3a92e05141515473
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6f569fcfdf4..72aab7c8f91 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -639,6 +639,29 @@ implements @code{collections.abc.MutableSequence}. It can be made immutable
by calling @code{FrozenList.freeze}.")
(license license:asl2.0)))
+(define-public python-aiohappyeyeballs
+ (package
+ (name "python-aiohappyeyeballs")
+ (version "2.4.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "aiohappyeyeballs" version))
+ (sha256
+ (base32 "0ibpfm552pflim399qq34cnd79xhz5qr5khqzhx1hqwwi23pvpaz"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-poetry-core
+ python-pytest
+ python-pytest-asyncio
+ python-pytest-cov))
+ (home-page "https://github.com/aio-libs/aiohappyeyeballs")
+ (synopsis "Happy Eyeballs for asyncio")
+ (description "This library exists to allow connecting with Happy
+Eyeballs (RFC 8305) when you already have a list of @code{addrinfo} and not a
+DNS name.")
+ (license license:psfl)))
+
(define-public python-aiosignal
(package
(name "python-aiosignal")