diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 17:04:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 17:06:58 +0100 |
commit | 0919aad92b3ad8b17235c9b924b291085a34a802 (patch) | |
tree | a499b2cc2539ef1cbf9890183f39d01f63cbd495 | |
parent | 5364c9fc0e873d644fde3f0731ebeb499dc76da2 (diff) |
gnu: python-socksio: Switch to pyproject-build-system.python-team
* gnu/packages/python-web.scm (python-socksio):
[build-system]: Use pyproject.
[native-inputs]: Add python-flit-core, python-pytest, and
python-pytest-cov.
Change-Id: I31a304fdc71d8b2b0d5522bff100eb292ff76ab4
-rw-r--r-- | gnu/packages/python-web.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 0e3c87503d..dafb3fe66b 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -9777,7 +9777,11 @@ realtime client and server.") (uri (pypi-uri "socksio" version)) (sha256 (base32 "1b64j45w35jzhjhnq44bnyad9ydh1iyyd7a6j2c8phxmllyyp2zq")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (native-inputs + (list python-flit-core + python-pytest + python-pytest-cov)) (home-page "https://github.com/sethmlarson/socksio") (synopsis "Sans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5") (description "The @code{socksio} Python module is a client-side sans-I/O |