~ruther/guix-local

4dde481a10e5f66cf3b31649319ff81700b95cf5 — Sharlatan Hellseher 7 months ago 53c9832
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
1 files changed, 9 insertions(+), 7 deletions(-)

M gnu/packages/sphinx.scm
M gnu/packages/sphinx.scm => gnu/packages/sphinx.scm +9 -7
@@ 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