me
/
guix
Archived
1
0
Fork 0

gnu: Add python-socketio.

* gnu/packages/python-web.scm (python-socketio): New variable.
master
Eric Bavier 2021-03-13 20:37:16 -06:00
parent 7164d2105a
commit 078f3288e2
No known key found for this signature in database
GPG Key ID: FD73CAC719D32566
1 changed files with 26 additions and 0 deletions

View File

@ -5826,6 +5826,32 @@ that's written to go fast. It allows the usage of the
your code non-blocking and speedy.")
(license license:expat)))
(define-public python-socketio
(package
(name "python-socketio")
(version "5.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-socketio" version))
(sha256
(base32
"14vhpxdn54lz54mhcqlgcks0ssbws9gd1y7ii16a2g3gpfdc531k"))))
(build-system python-build-system)
(propagated-inputs
`(("python-aiohttp" ,python-aiohttp)
("python-bidict" ,python-bidict)
("python-engineio" ,python-engineio)
("python-requests" ,python-requests)
("python-websocket-client" ,python-websocket-client)
("python-websockets" ,python-websockets)))
(arguments '(#:tests? #f)) ; Tests not included in release tarball.
(home-page "https://github.com/miguelgrinberg/python-socketio/")
(synopsis "Python Socket.IO server")
(description
"Python implementation of the Socket.IO realtime client and server.")
(license license:expat)))
(define-public python-socks
(package
(name "python-socks")