mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: python-pyqtwebengine: Update to 5.14.0.
* gnu/packages/qt.scm (python-pyqtwebengine): Update to 5.14.0. [source](uri): Add PyPI mirror.
This commit is contained in:
parent
3c48fe3658
commit
7c7e9ac716
1 changed files with 8 additions and 5 deletions
|
@ -2037,16 +2037,19 @@ (define-public python-pyqt
|
||||||
(define-public python-pyqtwebengine
|
(define-public python-pyqtwebengine
|
||||||
(package
|
(package
|
||||||
(name "python-pyqtwebengine")
|
(name "python-pyqtwebengine")
|
||||||
(version "5.12.1")
|
(version "5.14.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
;; The newest releases are only available on PyPI. Older ones
|
||||||
"https://www.riverbankcomputing.com/static/Downloads/PyQtWebEngine/"
|
;; are mirrored at the upstream home page.
|
||||||
version "/PyQtWebEngine_gpl-" version ".tar.gz"))
|
(uri (list (pypi-uri "PyQtWebEngine" version)
|
||||||
|
(string-append "https://www.riverbankcomputing.com/static"
|
||||||
|
"/Downloads/PyQtWebEngine/" version
|
||||||
|
"/PyQtWebEngine-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wylkd7fh2g27y3710rpxmj9wx0wpi3z7qbv6khiddm15rkh81w6"))))
|
"14hw49akb35n9pgiw564x8ykmsifihn9p2ax2x4zmywb3w2ra5g1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python" ,python)
|
`(("python" ,python)
|
||||||
|
|
Loading…
Reference in a new issue