diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 16:32:20 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:59 +0100 |
| commit | 70b8f3bb3589da65b65dc85357cec9de71d39cc6 (patch) | |
| tree | 3ea0923c5900fa4745899e68e2adef0a29c272a5 | |
| parent | 8c52cb7f7a866dac2e8d142ebb59fe2833b7c895 (diff) | |
gnu: python-tornado: Switch to pypproject-build-system.
* gnu/packages/python-web.scm (python-tornado)
[build-system]: Use pypproject.
[native-inputs]: Add python-setuptools.
Change-Id: I39e3a906f4ac66b878a4aae157cef5fbd1135074
| -rw-r--r-- | gnu/packages/python-web.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9e0fe2dc43..07e123ef4a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4140,6 +4140,7 @@ data.") (define-public python-tornado (package + ;; TODO: Try to refresh and check all dependents. (name "python-tornado") (version "5.1.1") (source @@ -4149,7 +4150,7 @@ data.") (sha256 (base32 "02clqk2116jbnq8lnaqmdw3p52nqrd9ib59r4xz2ll43fpcmhlaf")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments (list #:phases @@ -4179,7 +4180,8 @@ data.") (invoke "python" "-m" "tornado.test.runtests" "--verbose=yes"))))))) (native-inputs - (list python-certifi)) + (list python-certifi + python-setuptools)) (home-page "https://www.tornadoweb.org/") (synopsis "Python web framework and asynchronous networking library") (description |
