gnu: python-engineio: Update to 4.11.2.

* gnu/packages/python-web.scm (python-engineio): Update to 4.11.2.
[build-system]: Use pyproject-build-system.
[arguments]: Enable all but one tests.
[propagated-inputs]: Add python-simple-websocket and python-tornado.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.
[description]: Use complete sentences.

Change-Id: I7c78287c3a11fcfb44555ccdc65447cd8395cdfc
This commit is contained in:
Ricardo Wurmus 2025-01-12 21:09:10 +01:00
parent c15345c1f1
commit b187bd7bcd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -5704,22 +5704,30 @@ this it tries to be opinion-free and very extendable.")
(define-public python-engineio (define-public python-engineio
(package (package
(name "python-engineio") (name "python-engineio")
(version "4.0.1") (version "4.11.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "python-engineio" version)) (uri (pypi-uri "python_engineio" version))
(sha256 (sha256
(base32 (base32
"0xqkjjxbxakz9fd7v94rkr2r5r9nrkap2c3gf3abbd0j6ld5qmxv")))) "0abijzn4srf89jlj0kqcd9xbhyxvglzxkciy5nxv815rrvdb0nql"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments
(list
;; File not found.
#:test-flags '(list "-k" "not test_static_files")))
(propagated-inputs (propagated-inputs
(list python-aiohttp python-requests python-websocket-client)) (list python-aiohttp
(arguments '(#:tests? #f)) ; Tests not included in release tarball. python-requests
python-simple-websocket
python-tornado
python-websocket-client))
(native-inputs (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/miguelgrinberg/python-engineio/") (home-page "https://github.com/miguelgrinberg/python-engineio/")
(synopsis "Engine.IO server") (synopsis "Engine.IO server")
(description "Python implementation of the Engine.IO realtime client and (description "This package provides a Python implementation of the
server.") @code{Engine.IO} realtime client and server.")
(license license:expat))) (license license:expat)))
(define-public python-ephemeral-port-reserve (define-public python-ephemeral-port-reserve