mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add python-qtpy.
* gnu/packages/qt.scm (python-qtpy): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
98471d5786
commit
a942ab1837
1 changed files with 25 additions and 0 deletions
|
@ -2268,6 +2268,31 @@ (define-public python2-pyqt-4
|
|||
"--sipdir" sip)))))))
|
||||
(license (list license:gpl2 license:gpl3)))) ; choice of either license
|
||||
|
||||
(define-public python-qtpy
|
||||
(package
|
||||
(name "python-qtpy")
|
||||
(version "1.9.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "QtPy" version))
|
||||
(sha256
|
||||
(base32
|
||||
"13cw8l7zrhbdi03k1wl1pg9xdl4ahdfa7yz8gd0f23sxnm22rdrd"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-pyside2" ,python-pyside-2)))
|
||||
(arguments
|
||||
`(;; Not all supported bindings are packaged. Especially PyQt4.
|
||||
#:tests? #f))
|
||||
(home-page "https://github.com/spyder-ide/qtpy")
|
||||
(synopsis
|
||||
"Qt bindings (PyQt5, PyQt4 and PySide) and additional custom QWidgets")
|
||||
(description
|
||||
"Provides an abstraction layer on top of the various Qt bindings
|
||||
(PyQt5, PyQt4 and PySide) and additional custom QWidgets.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public qscintilla
|
||||
(package
|
||||
(name "qscintilla")
|
||||
|
|
Loading…
Reference in a new issue