[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu: Add python-qtpy.
From: |
guix-commits |
Subject: |
01/10: gnu: Add python-qtpy. |
Date: |
Mon, 28 Dec 2020 06:22:40 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit a942ab183782bbdf785bd73f70f7ec905764f941
Author: John Doe <dftxbs3e@free.fr>
AuthorDate: Sun Dec 27 23:26:46 2020 +0100
gnu: Add python-qtpy.
* gnu/packages/qt.scm (python-qtpy): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/qt.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 2e621e7..9a5b329 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -2268,6 +2268,31 @@ itself.")
"--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")
- branch master updated (98471d5 -> 3742c7f), guix-commits, 2020/12/28
- 01/10: gnu: Add python-qtpy.,
guix-commits <=
- 03/10: gnu: Add python-qdarkstyle., guix-commits, 2020/12/28
- 04/10: gnu: Add python-bitstring., guix-commits, 2020/12/28
- 05/10: gnu: Add python-socks., guix-commits, 2020/12/28
- 02/10: gnu: Add python-helpdev., guix-commits, 2020/12/28
- 06/10: gnu: python-aiohttp-socks: Update to 0.5.5., guix-commits, 2020/12/28
- 07/10: gnu: libsecp256k1: Update to 20200615-1-dbd41db., guix-commits, 2020/12/28
- 08/10: gnu: electrum: Update to 4.0.9., guix-commits, 2020/12/28
- 10/10: gnu: pythonbitstring: Run tests., guix-commits, 2020/12/28
- 09/10: gnu: python-helpdev: Enable tests., guix-commits, 2020/12/28