guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 6f6118e24dfe856aeae68b77474a824dbd26aebd
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 31 16:32:20 2025 +0100

    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
---
 gnu/packages/python-web.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 92bd944846..183ea33656 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4124,6 +4124,7 @@ data.")
 
 (define-public python-tornado
   (package
+    ;; TODO: Try to refresh and check all dependents.
     (name "python-tornado")
     (version "5.1.1")
     (source
@@ -4133,7 +4134,7 @@ data.")
        (sha256
         (base32
          "02clqk2116jbnq8lnaqmdw3p52nqrd9ib59r4xz2ll43fpcmhlaf"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments
      (list
       #:phases
@@ -4163,7 +4164,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

Reply via email to