From b36b48e725adf1d40616a71c61966153fc8750db Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 24 Jun 2025 19:16:17 +0100 Subject: [PATCH] gnu: python-sphinx-alabaster-theme: Update to 0.7.16. * gnu/packages/sphinx.scm (python-sphinx-alabaster-theme): Update to 0.7.16. [arguments] : No tests in PyPI or Git. [native-inputs]: Remove python-setuptools and python-wheel; add python-flit-core. Change-Id: I818a033a7faec3c9048ac9b79043c95fd451d85d --- gnu/packages/sphinx.scm | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 118a189965b3a3ff477605b02c0517d59bff1714..63fc693f30d1e8a6b478f7e6b3dd9c90689fcf81 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -921,21 +921,24 @@ introspection of @code{zope.interface} instances in code.") (define-public python-sphinx-alabaster-theme (package (name "python-sphinx-alabaster-theme") - (version "0.7.13") - (source (origin - (method url-fetch) - (uri (pypi-uri "alabaster" version)) - (sha256 - (base32 - "1qjam3hks6a3fa89nhb9ajk62b2m5qmss0qyw0b0wsay9l44lym2")))) + (version "0.7.16") + (source + (origin + (method url-fetch) + (uri (pypi-uri "alabaster" version)) + (sha256 + (base32 "0rcdsl333jjwrb8m77nsj8wdn78jg92dvk7qsw6xbnm552fbka3m")))) (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; no tests provided in PyPI or Git (propagated-inputs (list python-pygments)) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-flit-core)) (home-page "https://alabaster.readthedocs.io/") (synopsis "Configurable sidebar-enabled Sphinx theme") - (description "Alabaster is a visually (c)lean, responsive, configurable -theme for the Sphinx documentation system. It's the default theme of Sphinx.") + (description + "Alabaster is a visually (c)lean, responsive, configurable theme for the +Sphinx documentation system. It's the default theme of Sphinx.") (license license:bsd-3))) (define-public python-sphinx-argparse