summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm20
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 24bfd6c85b8..9af1f0238dd 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6203,25 +6203,29 @@ Wikidata}.")
6203(define-public python-wsproto 6203(define-public python-wsproto
6204 (package 6204 (package
6205 (name "python-wsproto") 6205 (name "python-wsproto")
6206 (version "1.2.0") 6206 (version "1.3.2")
6207 (source 6207 (source
6208 (origin 6208 (origin
6209 (method url-fetch) 6209 (method git-fetch)
6210 (uri (pypi-uri "wsproto" version)) 6210 (uri (git-reference
6211 (url "https://github.com/python-hyper/wsproto/")
6212 (commit version)))
6213 (file-name (git-file-name name version))
6211 (sha256 6214 (sha256
6212 (base32 "0rahm1j9danv1l6i6as80acwv16ycihxkhrvwjiqh9drxhk5ymmd")))) 6215 (base32 "1n67xnnq3mvnxp61r4d8730hh8hzrq8i9bdrv8jivhj369fhndn9"))))
6213 (build-system pyproject-build-system) 6216 (build-system pyproject-build-system)
6214 (native-inputs 6217 (native-inputs
6215 (list python-pytest python-setuptools python-wheel)) 6218 (list python-pytest
6219 python-setuptools))
6216 (propagated-inputs 6220 (propagated-inputs
6217 (list python-h11)) 6221 (list python-h11))
6218 (home-page "https://github.com/python-hyper/wsproto/") 6222 (home-page "https://github.com/python-hyper/wsproto/")
6219 (synopsis "WebSockets state-machine based protocol implementation") 6223 (synopsis "WebSockets state-machine based protocol implementation")
6220 (description 6224 (description
6221 "@code{wsproto} is a pure-Python implementation of a WebSocket protocol 6225 "@code{wsproto} is a pure-Python implementation of a WebSocket protocol
6222stack. It's written from the ground up to be embeddable in whatever program you 6226stack. It's written from the ground up to be embeddable in whatever program
6223choose to use, ensuring that you can communicate via WebSockets, as defined in 6227you choose to use, ensuring that you can communicate via WebSockets, as
6224RFC6455, regardless of your programming paradigm.") 6228defined in RFC6455, regardless of your programming paradigm.")
6225 (license license:expat))) 6229 (license license:expat)))
6226 6230
6227(define-public hypercorn 6231(define-public hypercorn