diff options
author | Eric Bavier <bavier@member.fsf.org> | 2021-03-13 20:37:43 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2021-03-14 13:24:21 -0500 |
commit | 5a31eb7d35d7085246cf40f138318501adc27d36 (patch) | |
tree | 070e60164e1bbb97c39679173e21d3b5e45523e7 /gnu | |
parent | 078f3288e29ddab9a10187b1d0697c57448eac7b (diff) |
gnu: Add python-flask-socketio.
* gnu/packages/python-web.scm (python-flask-socketio): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9828d5e61c..e327b3b030 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5489,6 +5489,27 @@ decorators and tools to describe your API and expose its documentation properly 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") |