[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
24/55: gnu: websockify: Update to 0.11.0.
From: |
guix-commits |
Subject: |
24/55: gnu: websockify: Update to 0.11.0. |
Date: |
Thu, 21 Sep 2023 13:31:36 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit c7cb52e3fa65f7f163e244c11036f0898fd01058
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Sep 8 23:12:28 2023 +0800
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.
---
gnu/packages/web.scm | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 631106028d..e850531a8e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1985,7 +1985,7 @@ of people.")
(define-public websockify
(package
(name "websockify")
- (version "0.8.0")
+ (version "0.11.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1994,15 +1994,16 @@ of people.")
(file-name (git-file-name name version))
(sha256
(base32
- "0pcic8qs0gdwrfjgfaf893jyddaw97wcjm2mmvwn0xyhmy8mbmw1"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f)) ; FIXME: 2 out of 6 tests fail with "ImportError: No
module
- ; named 'stubout'". The tests can be run by replacing the check phase with
- ; the command "python setup.py nosetests --verbosity=3".
- (native-inputs (list ; Required for tests:
- python-mox3 python-nose))
- (propagated-inputs (list python-numpy))
+ "0ysqylpyv17s52634wn3vrwf7y9b5ig7fdfv8vwj1272lvv68qgk"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-nose2))
+ (propagated-inputs
+ (list python-jwcrypto
+ python-numpy
+ python-redis
+ python-requests
+ ;; TODO: Remove simplejson for versions > 0.11.0.
+ python-simplejson))
(home-page "https://github.com/novnc/websockify")
(synopsis "WebSockets support for any application/server")
(description "Websockify translates WebSockets traffic to normal socket
- 55/55: gnu: python-bwapy: Fix typo., (continued)
- 55/55: gnu: python-bwapy: Fix typo., guix-commits, 2023/09/21
- 02/55: gnu: Add python-dirty-equals., guix-commits, 2023/09/21
- 07/55: gnu: Add python-html5tagger., guix-commits, 2023/09/21
- 09/55: gnu: Add python-pyproject-hooks., guix-commits, 2023/09/21
- 10/55: gnu: Add python-slotscheck., guix-commits, 2023/09/21
- 12/55: gnu: Add python-towncrier., guix-commits, 2023/09/21
- 13/55: gnu: Add python-pylsqpack., guix-commits, 2023/09/21
- 14/55: gnu: Add python-aioquic., guix-commits, 2023/09/21
- 19/55: gnu: Add python-dj-search-url., guix-commits, 2023/09/21
- 20/55: gnu: Add python-django-cache-url., guix-commits, 2023/09/21
- 24/55: gnu: websockify: Update to 0.11.0.,
guix-commits <=
- 26/55: gnu: python-httpx: Update to 0.24.1., guix-commits, 2023/09/21
- 25/55: gnu: websockify: Don't propagate inputs., guix-commits, 2023/09/21
- 30/55: gnu: python-deprecated: Update to 1.2.14., guix-commits, 2023/09/21
- 32/55: gnu: python-pkginfo: Update to 1.9.6., guix-commits, 2023/09/21
- 31/55: gnu: python-daemon: Update to 3.0.1., guix-commits, 2023/09/21
- 33/55: gnu: python-pytest-django: Update to 4.5.2., guix-commits, 2023/09/21
- 38/55: gnu: python-platformdirs: Update to 3.10.0., guix-commits, 2023/09/21
- 42/55: gnu: python-cmarkgfm: Update to 2022.10.27., guix-commits, 2023/09/21
- 36/55: gnu: python-django@4: Update to 4.2.5., guix-commits, 2023/09/21
- 39/55: gnu: python-distlib: Update to 0.3.7., guix-commits, 2023/09/21