diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-12 21:25:33 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:46 +0100 |
| commit | 0a865dead08e616183d06e9d8b216f40bdc9a509 (patch) | |
| tree | a3fb786ca97e32c3a59be01ed3e1a802166db3cc /gnu/packages/python-web.scm | |
| parent | b187bd7bcd0df1d28326eebf771be63270fb26c2 (diff) | |
gnu: python-socketio: Update to 5.12.1.
* gnu/packages/python-web.scm (python-socketio): Update to 5.12.1.
[build-system]: Use pyproject-build-system.
[arguments]: Enable tests, but ignore asynchronous tests.
[propagated-inputs]: Remove python-aiohttp, python-requests,
python-websocket-client, python-websockets; add python-msgpack.
[native-inputs]: Add python-pytest, python-pytest-asyncio,
python-pytest-timeout, python-setuptools, python-uvicorn, and python-wheel.
[description]: Complete the sentence.
Change-Id: I3b8670d95be82729f1501f47035ada67bf5ac873
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 11cc906ca3e..8840c9f8148 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -8486,27 +8486,34 @@ fast. It allows the usage of the @code{async/await} syntax added in Python (define-public python-socketio (package (name "python-socketio") - (version "5.1.0") + (version "5.12.1") (source (origin (method url-fetch) - (uri (pypi-uri "python-socketio" version)) + (uri (pypi-uri "python_socketio" version)) (sha256 (base32 - "14vhpxdn54lz54mhcqlgcks0ssbws9gd1y7ii16a2g3gpfdc531k")))) - (build-system python-build-system) + "175sd3fdld3s477i6b3v49yhf1alsbm1vaxzq44nqrqb8wgzz682")))) + (build-system pyproject-build-system) + (arguments + (list #:test-flags + '(list "--timeout=60" + ;; These tests freeze. + "--ignore-glob=tests/async/*"))) (propagated-inputs - (list python-aiohttp - python-bidict - python-engineio - python-requests - python-websocket-client - python-websockets)) - (arguments '(#:tests? #f)) ; Tests not included in release tarball. + (list python-bidict python-engineio python-msgpack)) + (native-inputs + (list python-pytest + python-pytest-asyncio + python-pytest-timeout + python-setuptools + python-uvicorn + python-wheel)) (home-page "https://github.com/miguelgrinberg/python-socketio/") (synopsis "Python Socket.IO server") (description - "Python implementation of the Socket.IO realtime client and server.") + "This package provides a Python implementation of the @code{Socket.IO} +realtime client and server.") (license license:expat))) (define-public python-socks |
