gnu: websockify: Update to 0.11.0.
* gnu/packages/web.scm (websockify): Update to 0.11.0. [build-system]: Switch to PYPROJECT-BUILD-SYSTEM. [arguments]: Remove. [native-inputs]: Remove PYTHON-MOX3. [propagated-inputs]: Add PYTHON-JWCRYPTO, PYTHON-REDIS, PYTHON-REQUESTS, and PYTHON-SIMPLEJSON.
parent
687ae1f8d1
commit
c7cb52e3fa
|
@ -1985,7 +1985,7 @@ of people.")
|
||||||
(define-public websockify
|
(define-public websockify
|
||||||
(package
|
(package
|
||||||
(name "websockify")
|
(name "websockify")
|
||||||
(version "0.8.0")
|
(version "0.11.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -1994,15 +1994,16 @@ of people.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0pcic8qs0gdwrfjgfaf893jyddaw97wcjm2mmvwn0xyhmy8mbmw1"))))
|
"0ysqylpyv17s52634wn3vrwf7y9b5ig7fdfv8vwj1272lvv68qgk"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(native-inputs (list python-nose2))
|
||||||
`(#:tests? #f)) ; FIXME: 2 out of 6 tests fail with "ImportError: No module
|
(propagated-inputs
|
||||||
; named 'stubout'". The tests can be run by replacing the check phase with
|
(list python-jwcrypto
|
||||||
; the command "python setup.py nosetests --verbosity=3".
|
python-numpy
|
||||||
(native-inputs (list ; Required for tests:
|
python-redis
|
||||||
python-mox3 python-nose))
|
python-requests
|
||||||
(propagated-inputs (list python-numpy))
|
;; TODO: Remove simplejson for versions > 0.11.0.
|
||||||
|
python-simplejson))
|
||||||
(home-page "https://github.com/novnc/websockify")
|
(home-page "https://github.com/novnc/websockify")
|
||||||
(synopsis "WebSockets support for any application/server")
|
(synopsis "WebSockets support for any application/server")
|
||||||
(description "Websockify translates WebSockets traffic to normal socket
|
(description "Websockify translates WebSockets traffic to normal socket
|
||||||
|
|
Reference in New Issue