From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 01 06:55:42 2020 Received: (at 44990) by debbugs.gnu.org; 1 Dec 2020 11:55:42 +0000 Received: from localhost ([127.0.0.1]:58138 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kk4Fk-00046L-Q6 for submit@debbugs.gnu.org; Tue, 01 Dec 2020 06:55:42 -0500 Received: from smtp4-g21.free.fr ([212.27.42.4]:4558) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kk4Fh-000465-Ja for 44990@debbugs.gnu.org; Tue, 01 Dec 2020 06:55:26 -0500 Received: from localhost.localdomain (unknown [IPv6:2a01:e0a:2a2:1350:9527:5c74:ee6c:113c]) by smtp4-g21.free.fr (Postfix) with ESMTP id 43F3B19F574; Tue, 1 Dec 2020 12:55:21 +0100 (CET) From: dftxbs3e@free.fr To: 44990@debbugs.gnu.org Subject: [PATCH 1/8] gnu: Add python-qtpy. Date: Tue, 1 Dec 2020 12:55:09 +0100 Message-Id: <20201201115516.265593-1-dftxbs3e@free.fr> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 2.2 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: From: John Doe * gnu/packages/python-xyz.scm (python-qtpy): New variable. --- gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1086d724f1..ad51498050 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23232,3 +23232,27 @@ [...] Content analysis details: (2.2 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 HK_RANDOM_FROM From username looks random 0.6 HK_RANDOM_ENVFROM Envelope sender username looks random 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (dftxbs3e[at]free.fr) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [212.27.42.4 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [212.27.42.4 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 1.6 SPOOFED_FREEMAIL No description available. X-Debbugs-Envelope-To: 44990 Cc: John Doe X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.4 (/) From: John Doe * gnu/packages/python-xyz.scm (python-qtpy): New variable. --- gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1086d724f1..ad51498050 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23232,3 +23232,27 @@ process.") "Gamera is a toolkit for building document image recognition systems.") (home-page "https://gamera.informatik.hsnr.de/") (license license:gpl2+))) + +(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 + "Provides an abstraction layer on top of the various 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))) -- 2.28.0