mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: Add python-flask-socketio.
* gnu/packages/python-web.scm (python-flask-socketio): New variable.
This commit is contained in:
parent
078f3288e2
commit
5a31eb7d35
1 changed files with 21 additions and 0 deletions
|
@ -5489,6 +5489,27 @@ (define-public python-flask-restx
|
|||
Swagger.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-flask-socketio
|
||||
(package
|
||||
(name "python-flask-socketio")
|
||||
(version "5.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "Flask-SocketIO" version))
|
||||
(sha256
|
||||
(base32
|
||||
"09r2gpj2nbn72v2zaf6xsvlazln77pgqzp2pg2021nja47sijhsw"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-flask" ,python-flask)
|
||||
("python-socketio" ,python-socketio)))
|
||||
(arguments '(#:tests? #f)) ; Tests not included in release tarball.
|
||||
(home-page "https://github.com/miguelgrinberg/Flask-SocketIO/")
|
||||
(synopsis "Socket.IO integration for Flask applications")
|
||||
(description "Socket.IO integration for Flask applications")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-manuel
|
||||
(package
|
||||
(name "python-manuel")
|
||||
|
|
Loading…
Reference in a new issue