diff options
author | BonfaceKilz | 2020-11-16 15:49:18 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-11-16 15:49:18 +0300 |
commit | 6e3bcbe748371ba100db190ade8569cd5925a891 (patch) | |
tree | e63afa02e0247b71c74e17b68103a16332068d54 | |
parent | e5d058802fab5c32b6b129013445e629837c540a (diff) | |
download | guix-bioinformatics-6e3bcbe748371ba100db190ade8569cd5925a891.tar.gz |
gn: python: Add python-socketio
-rw-r--r-- | gn/packages/python.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 7819f41..ee60366 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1766,3 +1766,27 @@ sorted order.") (synopsis "Engine.IO server") (description "Engine.IO server") (license license:expat))) + +(define-public python-socketio + (package + (name "python-socketio") + (version "4.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-socketio" version)) + (sha256 + (base32 + "0npjklf76flavqlsijvz07h5ndvzwj1s5jjvla757i19q2xqz39m")))) + (build-system python-build-system) + ;; No tests + (arguments + `(#:tests? #f)) + (propagated-inputs + `(("python-engineio" ,python-engineio) + ("python-six" ,python-six))) + (home-page + "http://github.com/miguelgrinberg/python-socketio/") + (synopsis "Socket.IO server") + (description "Socket.IO server") + (license license:expat))) |