sharlatan pushed a commit to branch python-team
in repository guix.
commit 3669d57c33c4d01084dd350ca7aacb538e37b07b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Nov 26 20:14:27 2024 +0000
gnu: hypercorn: Update to 0.17.3.
* gnu/packages/python-web.scm (hypercorn): Update to 0.17.3.
[propagated-inputs]: Add python-taskgroup.
[native-inputs]: Add python-httpx.
Change-Id: I01eaf6e72c2882464bf98b09d24d5a5df7781571
---
gnu/packages/python-web.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 59b42b09df..1e935507cc 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2635,7 +2635,7 @@ RFC6455, regardless of your programming paradigm.")
(define-public hypercorn
(package
(name "hypercorn")
- (version "0.14.4")
+ (version "0.17.3")
(source
(origin
(method git-fetch) ;PyPI does not have tests
@@ -2644,16 +2644,18 @@ RFC6455, regardless of your programming paradigm.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0zyf5b8959sd12ycmqzvsb8746i3gn76rz55gxvix5cwj672m7yx"))))
+ (base32 "13v6cy4frvnddv9zak06a4lmwxp121hjyfrlapxfmb7m3i8qrm02"))))
(build-system pyproject-build-system)
;; Propagate because Hypercorn also exposes functionality over a module.
(propagated-inputs (list python-exceptiongroup
python-h11
+ python-taskgroup
python-h2
python-priority
python-tomli
python-wsproto))
- (native-inputs (list python-hypothesis
+ (native-inputs (list python-httpx
+ python-hypothesis
python-poetry-core
python-pytest
python-pytest-asyncio