diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-06 09:41:55 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-06 09:51:59 +0100 |
commit | 2c9c2ab3bd9d77c53aca87eddfc0a27be6c44b52 (patch) | |
tree | 79ac024735aa2233650e92897d3a4c431e1ff12d /gnu/packages/python-xyz.scm | |
parent | 7a7c01b393ecb20dff142b9ea9bf8317e994bef2 (diff) |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f49794f3cd..c9ea212e89 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30443,7 +30443,12 @@ a mypy plugin that smooths over some limitations in the basic type hints. (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") |