summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-10 23:30:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-11 03:22:53 +0100
commita044eec7f6ffe3ce9068ddeb08cfdb9e88c8999d (patch)
tree47fcad476ebd614b83839572c7616da7b9f453d3 /gnu/packages/python-web.scm
parent7773212c56d404ce25cb85193a72b30e64f9209c (diff)
gnu: python-engineio: Update to 4.13.4.
* gnu/packages/python-web.scm (python-engineio): Update to 4.13.4. [source]: Switch to git-fetch. [arguments]: Drop all.
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm22
1 files changed, 10 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 43f0f78b0d2..22c9c91b8a5 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9239,29 +9239,27 @@ this it tries to be opinion-free and very extendable.")
9239(define-public python-engineio 9239(define-public python-engineio
9240 (package 9240 (package
9241 (name "python-engineio") 9241 (name "python-engineio")
9242 (version "4.12.2") 9242 (version "4.13.4")
9243 (source 9243 (source
9244 (origin 9244 (origin
9245 (method url-fetch) 9245 (method git-fetch)
9246 (uri (pypi-uri "python_engineio" version)) 9246 (uri (git-reference
9247 (url "https://github.com/miguelgrinberg/python-engineio/")
9248 (commit (string-append "v" version))))
9249 (file-name (git-file-name name version))
9247 (sha256 9250 (sha256
9248 (base32 9251 (base32 "1ndp68cqssjpvln958v236rg5jgpzy57vs3z45sz7xfscmbi893r"))))
9249 "1ynyf3n29biwkm6nwzzwzhr4m19lsir1x5azxq2nl7xyw7zi5rz7"))))
9250 (build-system pyproject-build-system) 9252 (build-system pyproject-build-system)
9251 (arguments
9252 (list
9253 #:test-flags
9254 #~(list "-k"
9255 "not test_static_file_routing and not test_static_files")))
9256 (native-inputs 9253 (native-inputs
9257 (list python-pytest 9254 (list python-pytest
9258 python-pytest-asyncio 9255 python-pytest-asyncio
9259 python-setuptools 9256 python-setuptools
9260 python-tornado)) 9257 python-tornado))
9261 (propagated-inputs 9258 (propagated-inputs
9262 (list python-aiohttp 9259 (list python-simple-websocket
9260 ;; [optional]
9261 python-aiohttp
9263 python-requests 9262 python-requests
9264 python-simple-websocket
9265 python-websocket-client)) 9263 python-websocket-client))
9266 (home-page "https://github.com/miguelgrinberg/python-engineio/") 9264 (home-page "https://github.com/miguelgrinberg/python-engineio/")
9267 (synopsis "Engine.IO server") 9265 (synopsis "Engine.IO server")