From 4dde481a10e5f66cf3b31649319ff81700b95cf5 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 5 Aug 2025 15:33:54 +0100 Subject: [PATCH] gnu: python-sphinxcontrib-jsmath: Switch to pyproject-build-system. * gnu/packages/sphinx.scm (python-sphinxcontrib-jsmath) [buld-system]: Use pyproject. [native-inputs]: Add python-setuptools. Change-Id: I5102c58d9f9bcf0e898bca636f84d0189c4a0625 --- gnu/packages/sphinx.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index bfb05ea4f66d32926b1bf518f08a839cd5ba97e7..30f1e0775a460deffd6533aa35a79b9fe23b8e61 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -478,15 +478,17 @@ HTML help files.") (package (name "python-sphinxcontrib-jsmath") (version "1.0.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "sphinxcontrib-jsmath" version)) - (sha256 - (base32 - "1f64w19j33sp151jimibraw6qrbhd5gxy8hs3797w9478m55x4m9")))) - (build-system python-build-system) + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinxcontrib-jsmath" version)) + (sha256 + (base32 "1f64w19j33sp151jimibraw6qrbhd5gxy8hs3797w9478m55x4m9")))) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) ;XXX: circular dependency on Sphinx + (native-inputs + (list python-setuptools)) (home-page "https://github.com/sphinx-doc/sphinxcontrib-jsmath") (synopsis "Sphinx extension to render math equations") (description