mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-sockjs-tornado.
* gnu/packages/python.scm (python-sockjs-tornado): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
dd5bb841bf
commit
e537c917e8
1 changed files with 32 additions and 0 deletions
|
@ -4217,6 +4217,38 @@ (define-public python2-scipy
|
|||
(package-with-python2
|
||||
(strip-python2-variant python-scipy)))
|
||||
|
||||
(define-public python-sockjs-tornado
|
||||
(package
|
||||
(name "python-sockjs-tornado")
|
||||
(version "1.0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "sockjs-tornado" version))
|
||||
(sha256
|
||||
(base32
|
||||
"16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(;; There are no tests, and running the test phase requires missing
|
||||
;; dependencies
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
`(("python-tornado" ,python-tornado)))
|
||||
(home-page "http://github.com/mrjoes/sockjs-tornado/")
|
||||
(synopsis
|
||||
"SockJS python server implementation on top of Tornado framework")
|
||||
(description
|
||||
"SockJS-tornado provides the server side counterpart to a SockJS client
|
||||
library, through the Tornado framework.
|
||||
|
||||
SockJS provides a low latency, full duplex, cross-domain communication channel
|
||||
between a web browser and web server.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python2-sockjs-tornado
|
||||
(package-with-python2 python-sockjs-tornado))
|
||||
|
||||
(define-public python-socksipy-branch
|
||||
(package
|
||||
(name "python-socksipy-branch")
|
||||
|
|
Loading…
Reference in a new issue