summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-05 10:18:29 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:50 +0100
commit8fd70453115662885d114640db06412c0d0d6a69 (patch)
tree26469a02e8ce7de8582db998a2324293cb24c892 /gnu/packages/python-web.scm
parentd348f3f21f84f55b6e52729c229e0a8c3d531d52 (diff)
gnu: python-h11: Update to 0.16.0.
* gnu/packages/python-web.scm (python-h11): Update to 0.16.0. [native-inputs]: Remove python-wheel. Change-Id: I111d5fdc2c46ad9b48a92b0b1f906b57ec04290a
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a4093b59b15..594141deb1f 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2992,16 +2992,16 @@ for use in Python programs that implement HTTP/2.")
(define-public python-h11
(package
(name "python-h11")
- (version "0.14.0")
+ (version "0.16.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "h11" version))
(sha256
- (base32 "17b97c56y31hi0n0x0cb5a87x4xr9jijf2y06pzj0977k6zgn6cg"))))
+ (base32 "1wazxq4b4jg5001h5ypvz9pvrg80pagyd1aqm962wya5rxbbjdaf"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-setuptools python-wheel))
+ (list python-pytest python-setuptools))
(home-page "https://github.com/python-hyper/h11")
(synopsis "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1")
(description