diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-10 10:30:15 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-10 10:30:21 +0000 |
commit | 69cbb0dd25eebbb38e179c1679aa0433008d9d08 (patch) | |
tree | 76684a072d3225833e0aa24f836d18a25b10076a | |
parent | 111e6f315de585195056858068292c6d7e8910f7 (diff) |
gnu: python-openstackdocstheme: Update to 3.4.1.
* gnu/packages/openstack.scm (python-openstackdocstheme): Update to 3.4.1.
[build-system]: Swap to pyproject-build-system.
[propagated-inputs]: Add python-sphinx.
[native-inputs]: Remove python-sphinx; add python-setuptools and python-wheel.
Change-Id: Ie12945ea9cffb7beb3c5cfa5dceea157065f82c4
-rw-r--r-- | gnu/packages/openstack.scm | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 9630b18002..ac283bd019 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -200,22 +200,24 @@ with mox as possible, but small enhancements have been made.") (define-public python-openstackdocstheme (package (name "python-openstackdocstheme") - (version "1.18.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "openstackdocstheme" version)) - (sha256 - (base32 - "1ki5204rjdqjvr8xr9w2qc1z6b6d2i5jas0i70xzkf9njlzjzv2r")))) - (build-system python-build-system) + (version "3.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "openstackdocstheme" version)) + (sha256 + (base32 "0f8vk9556cx3h2z2dwqqkylv3rijd1p15qjy4xjv9sxxcfngdx1q")))) + (build-system pyproject-build-system) (arguments - ;; FIXME: Tests require an old version of python-hacking, which in - ;; turn depends on mox3 which depends on this package. - `(#:tests? #f)) - (propagated-inputs - (list python-dulwich python-pbr)) + (list + #:tests? #f)) ; no tests in PyPI archive or git checkout (native-inputs - (list python-sphinx)) + (list python-setuptools + python-wheel)) + (propagated-inputs + (list python-dulwich + python-pbr + python-sphinx)) (home-page "https://docs.openstack.org/openstackdocstheme/latest/") (synopsis "OpenStack Docs Theme") (description |