mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-simple-websocket.
* gnu/packages/python-web.scm (python-simple-websocket): New variable. Change-Id: Ie17eb20ad72db6331c037c52215e753f1248d144
This commit is contained in:
parent
ce87b1333b
commit
c15345c1f1
1 changed files with 27 additions and 0 deletions
|
@ -8555,6 +8555,33 @@ through the network, it only deals with the implementation details of the
|
||||||
SOCKS protocols. It can be paired with any I/O library.")
|
SOCKS protocols. It can be paired with any I/O library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-simple-websocket
|
||||||
|
(package
|
||||||
|
(name "python-simple-websocket")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "simple_websocket" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1r1all55d5dimiw3qwdhj53cxj9yjgnskcysmcscarx0g9726fbr"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
;; Requires Internet access to resolve example.com
|
||||||
|
(list #:test-flags '(list "--ignore=tests/test_client.py")))
|
||||||
|
(propagated-inputs (list python-wsproto))
|
||||||
|
(native-inputs (list python-flake8
|
||||||
|
python-pytest
|
||||||
|
python-pytest-cov
|
||||||
|
python-setuptools
|
||||||
|
python-tox
|
||||||
|
python-wheel))
|
||||||
|
(home-page "https://github.com/miguelgrinberg/simple-websocket")
|
||||||
|
(synopsis "Simple WebSocket server and client for Python")
|
||||||
|
(description "This package provides a simple @code{WebSocket} server and
|
||||||
|
client for Python.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-siosocks
|
(define-public python-siosocks
|
||||||
(package
|
(package
|
||||||
(name "python-siosocks")
|
(name "python-siosocks")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue