guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 1cbab691bddea9d35b99e9a7b84295035e79dfd0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Aug 5 15:33:54 2025 +0100
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 bfb05ea4f6..30f1e0775a 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