mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-sphinx-cloud-sptheme: Update to 1.10.1 [still broken].
* gnu/packages/sphinx.scm (python-sphinx-cloud-sptheme): Update to 1.10.1. [source]: Update source to point to new Mercurial repository. [arguments]: Delete field, enabling tests (which fail due to Jinja2 >= 3.1). [native-inputs]: Move python-sphinx to... [propagated-inputs]: ... here. [description]: Do not use raw quotes to decorate text.
This commit is contained in:
parent
badd61bed2
commit
ea20078ccb
1 changed files with 16 additions and 12 deletions
|
@ -38,6 +38,7 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix hg-download)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
@ -701,25 +702,28 @@ theme for the Sphinx documentation system. It's the default theme of Sphinx.")
|
||||||
argparse commands and options")
|
argparse commands and options")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;;; FIXME: Currently broken by Jinja >= 3.10 (see:
|
||||||
|
;;; https://foss.heptapod.net/doc-utils/cloud_sptheme/-/issues/47).
|
||||||
(define-public python-sphinx-cloud-sptheme
|
(define-public python-sphinx-cloud-sptheme
|
||||||
(package
|
(package
|
||||||
(name "python-sphinx-cloud-sptheme")
|
(name "python-sphinx-cloud-sptheme")
|
||||||
(version "1.8.0")
|
(version "1.10.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method hg-fetch)
|
||||||
(uri (pypi-uri "cloud_sptheme" version))
|
(uri (hg-reference
|
||||||
|
(url "https://foss.heptapod.net/doc-utils/cloud_sptheme")
|
||||||
|
(changeset version)))
|
||||||
|
(file-name (hg-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dniqb6a39yh786f86c4jn666rwnyi1jvzn4616zhcchb7sfdshd"))))
|
"0k0pgi0vcn8vdy3k6x11fpp4mqp7p3l6n6pjfi3mir3vwjhdfz7l"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; FIXME: The 'pypi' release archive does not contain tests.
|
(native-inputs (list python-mock))
|
||||||
(arguments '(#:tests? #f))
|
(propagated-inputs (list python-sphinx))
|
||||||
(native-inputs
|
(home-page "https://foss.heptapod.net/doc-utils/cloud_sptheme")
|
||||||
(list python-sphinx))
|
(synopsis "Cloud theme for Sphinx")
|
||||||
(home-page "https://bitbucket.org/ecollins/cloud_sptheme")
|
(description "This package contains the @emph{Cloud} theme for Sphinx and
|
||||||
(synopsis "'Cloud' theme for Sphinx documenter")
|
some related extensions.")
|
||||||
(description "This package contains the \"Cloud\" theme for Sphinx and some
|
|
||||||
related extensions.")
|
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-guzzle-sphinx-theme
|
(define-public python-guzzle-sphinx-theme
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue