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 /gnu/packages | |
| 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
Diffstat (limited to 'gnu/packages')
| -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 9630b18002f..ac283bd019a 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.") | |||
| 200 | (define-public python-openstackdocstheme | 200 | (define-public python-openstackdocstheme |
| 201 | (package | 201 | (package |
| 202 | (name "python-openstackdocstheme") | 202 | (name "python-openstackdocstheme") |
| 203 | (version "1.18.1") | 203 | (version "3.4.1") |
| 204 | (source (origin | 204 | (source |
| 205 | (method url-fetch) | 205 | (origin |
| 206 | (uri (pypi-uri "openstackdocstheme" version)) | 206 | (method url-fetch) |
| 207 | (sha256 | 207 | (uri (pypi-uri "openstackdocstheme" version)) |
| 208 | (base32 | 208 | (sha256 |
| 209 | "1ki5204rjdqjvr8xr9w2qc1z6b6d2i5jas0i70xzkf9njlzjzv2r")))) | 209 | (base32 "0f8vk9556cx3h2z2dwqqkylv3rijd1p15qjy4xjv9sxxcfngdx1q")))) |
| 210 | (build-system python-build-system) | 210 | (build-system pyproject-build-system) |
| 211 | (arguments | 211 | (arguments |
| 212 | ;; FIXME: Tests require an old version of python-hacking, which in | 212 | (list |
| 213 | ;; turn depends on mox3 which depends on this package. | 213 | #:tests? #f)) ; no tests in PyPI archive or git checkout |
| 214 | `(#:tests? #f)) | ||
| 215 | (propagated-inputs | ||
| 216 | (list python-dulwich python-pbr)) | ||
| 217 | (native-inputs | 214 | (native-inputs |
| 218 | (list python-sphinx)) | 215 | (list python-setuptools |
| 216 | python-wheel)) | ||
| 217 | (propagated-inputs | ||
| 218 | (list python-dulwich | ||
| 219 | python-pbr | ||
| 220 | python-sphinx)) | ||
| 219 | (home-page "https://docs.openstack.org/openstackdocstheme/latest/") | 221 | (home-page "https://docs.openstack.org/openstackdocstheme/latest/") |
| 220 | (synopsis "OpenStack Docs Theme") | 222 | (synopsis "OpenStack Docs Theme") |
| 221 | (description | 223 | (description |
