~ruther/guix-local

69cbb0dd25eebbb38e179c1679aa0433008d9d08 — Sharlatan Hellseher 1 year, 2 months ago 111e6f3
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
1 files changed, 16 insertions(+), 14 deletions(-)

M gnu/packages/openstack.scm
M gnu/packages/openstack.scm => gnu/packages/openstack.scm +16 -14
@@ 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