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

commit d893918447b21186a87105a43cdbffad06d23c46
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Aug 10 00:18:22 2025 +0100

    gnu: python-jupyterlab-pygments: Switch to pyproject-build-system.
    
    * gnu/packages/jupyter.scm (python-jupyterlab-pygments)
      [build-system]: Use pyproject.
      [native-inputs]: Add python-setuptools.
    
    Change-Id: Ia507908434a215d933c6525430a870bdf2f6e3bc
---
 gnu/packages/jupyter.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 975366598f..bca6400174 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -549,7 +549,7 @@ alternative Python kernel for Jupyter.")
 (define-public python-jupyterlab-pygments
   (package
     (name "python-jupyterlab-pygments")
-    (version "0.1.2")
+    (version "0.1.2") ;newer versions requires Node.js packages
     (source
      (origin
        (method url-fetch)
@@ -557,8 +557,10 @@ alternative Python kernel for Jupyter.")
        (sha256
         (base32
          "0ij14mmnc39nmf84i0av6j9glazjic7wzv1qyhr0j5966s3s1kfg"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments '(#:tests? #false)) ; there are no tests
+    (native-inputs
+     (list python-setuptools))
     (propagated-inputs
      (list python-pygments))
     (home-page "https://jupyter.org";)

Reply via email to