gnu: python-trio-websocket: Add missing inputs.

Fixes <https://issues.guix.gnu.org/75393>.

* gnu/packages/python-xyz.scm (python-trio-websocket)[native-inputs]: Add
python-setuptools and python-wheel.

Change-Id: I2a964a65add3b18bbe4d83a38be71a39ff657808
This commit is contained in:
Ricardo Wurmus 2025-01-06 09:41:55 +01:00
parent 7a7c01b393
commit 2c9c2ab3bd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -30443,7 +30443,12 @@ (define-public python-trio-websocket
(sha256
(base32 "1yk2ak991kbl30xg8ldpggack1lwkizd7s5cpr28ir34z8iyjnpi"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest python-pytest-trio python-trustme))
(native-inputs
(list python-pytest
python-pytest-trio
python-setuptools
python-trustme
python-wheel))
(propagated-inputs (list python-async-generator python-trio python-wsproto))
(home-page "https://github.com/HyperionGray/trio-websocket")
(synopsis "WebSocket library for Trio")