mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-sphinxcontrib-websupport: Update to 2.0.0.
* gnu/packages/sphinx.scm (python-sphinxcontrib-websupport): Update to 2.0.0. [build-system]: Use pyproject. [native-inputs]: Add python-flit-core. Change-Id: I6bd810e2bed5ff30a213f52db3bec48a7aadcb9e
This commit is contained in:
parent
9837660296
commit
aa7c61c97e
1 changed files with 14 additions and 13 deletions
|
@ -870,25 +870,26 @@ builder does not support SVG images natively (e.g. LaTeX).")
|
||||||
(define-public python-sphinxcontrib-websupport
|
(define-public python-sphinxcontrib-websupport
|
||||||
(package
|
(package
|
||||||
(name "python-sphinxcontrib-websupport")
|
(name "python-sphinxcontrib-websupport")
|
||||||
(version "1.2.4")
|
(version "2.0.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "sphinxcontrib-websupport" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "sphinxcontrib_websupport" version))
|
||||||
(base32
|
(sha256
|
||||||
"0ck2jphvs82vjcbphhd1h7j1xfi9ynv5d8g5b947qnk8l0ih5psf"))))
|
(base32 "1kbr7q1iwmz5pdp75z15smbbg8flsk2ahap4jwglnif6pb9nfwqb"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: Tests depend on Sphinx, which depends on this.
|
`(#:tests? #f)) ;XXX: circular dependency on Sphinx@6
|
||||||
`(#:tests? #f))
|
(native-inputs
|
||||||
|
(list python-flit-core))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-sphinxcontrib-serializinghtml))
|
(list python-sphinxcontrib-serializinghtml))
|
||||||
(home-page "https://sphinx-doc.org/")
|
(home-page "https://sphinx-doc.org/")
|
||||||
(synopsis "Sphinx API for web applications")
|
(synopsis "Sphinx API for web applications")
|
||||||
(description
|
(description
|
||||||
"This package provides a Python API to easily integrate
|
"This package provides a Python API to easily integrate Sphinx
|
||||||
Sphinx documentation into your web application. It provides tools to
|
documentation into your web application. It provides tools to integrate
|
||||||
integrate Sphinx documents in web templates and to handle searches.")
|
Sphinx documents in web templates and to handle searches.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-sphinx-gallery
|
(define-public python-sphinx-gallery
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue