gnu: python-oslosphinx: Update to 4.18.0.

* gnu/packages/openstack.scm (python-oslosphinx): Update to 4.18.0.
[phases]: Delete 'check replacement.  Add a 'relax-requirements
phase.
[native-inputs]: Remove python-docutils.  Add python-openstackdocstheme and
python-reno.
(python2-oslosphinx): Remove variable.
This commit is contained in:
Maxim Cournoyer 2020-11-18 22:59:33 -05:00
parent 5c6c3fbd8c
commit b5b548efc5
No known key found for this signature in database
GPG Key ID: 1260E46482E63562

@ -617,30 +617,31 @@ and building documentation from them.")
(define-public python-oslosphinx (define-public python-oslosphinx
(package (package
(name "python-oslosphinx") (name "python-oslosphinx")
(version "4.10.0") (version "4.18.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "oslosphinx" version)) (uri (pypi-uri "oslosphinx" version))
(sha256 (sha256
(base32 (base32
"09mxqyabi68f3s3arvdhlhq0mn38vf74jbsfcg84151hcj6czhnl")))) "1xm41857vzrzjmnyi6bqirg4i5qa61v7wxcsdc4q1nzgr3ndgz5k"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'check (add-after 'unpack 'relax-requirements
(lambda _ (lambda _
;; Note: Upstream tests would have also built the release notes. (substitute* "test-requirements.txt"
;; That only would work if we were in a git checkout. (("hacking!=0.13.0,<0.14,>=0.12.0")
;; Therefore, we don't do it here. "hacking!=0.13.0,>=0.12.0"))
(invoke "python" "setup.py" "build_sphinx")))))) #t)))))
(propagated-inputs (propagated-inputs
`(("python-requests" ,python-requests))) `(("python-requests" ,python-requests)))
(native-inputs (native-inputs
`(("python-pbr" ,python-pbr) `(("python-hacking" ,python-hacking)
("python-docutils" ,python-docutils) ("python-openstackdocstheme" ,python-openstackdocstheme)
("python-hacking" ,python-hacking) ("python-pbr" ,python-pbr)
("python-reno" ,python-reno)
("python-sphinx" ,python-sphinx))) ("python-sphinx" ,python-sphinx)))
(home-page "https://www.openstack.org/") (home-page "https://www.openstack.org/")
(synopsis "OpenStack sphinx extensions and theme") (synopsis "OpenStack sphinx extensions and theme")
@ -648,9 +649,6 @@ and building documentation from them.")
documentation from the OpenStack project.") documentation from the OpenStack project.")
(license asl2.0))) (license asl2.0)))
(define-public python2-oslosphinx
(package-with-python2 python-oslosphinx))
(define-public python-oslotest (define-public python-oslotest
(package (package
(name "python-oslotest") (name "python-oslotest")