From bb35a51e5f482f8dee8863f3866afb596730fe78 Mon Sep 17 00:00:00 2001 From: John Soo Date: Sat, 6 Jul 2019 18:49:08 -0700 Subject: [PATCH 07/11] gnu: Add python-pyside-2-tools. --- gnu/packages/python-xyz.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b3a92ccf1e..f8838a5bc2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16046,3 +16046,35 @@ which can be used to generate Python bindings for your C or C++ code.") ;; Help! (license `(,license:gpl2+ ,license:llgpl))))) + +(define-public python-pyside-2-tools + (let ((revision "1") + (commit "f1b775537e7fbd718516749583b2abf1cb6adbce")) + (package + (name "python-pyside-2-tools") + (version (git-version "v5.11.2" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://code.qt.io/pyside/pyside-tools") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1w2g5afvww9r89wmdm9jx8sz67x4bzy9difkh72n4c73ya1n91ry")))) + (build-system cmake-build-system) + (inputs + `(("python-pyside-2" ,python-pyside-2) + ("python-shiboken-2" ,python-shiboken-2) + ("qtbase" ,qtbase))) + (arguments + `(#:tests? #f + #:configure-flags '("-DBUILD_TESTS=off"))) + (home-page "https://wiki.qt.io/Qt_for_Python") + (synopsis + "Contains lupdate, rcc and uic tools for PySide2") + (description + "Contains lupdate, rcc and uic tools for PySide2") + ;; Help! (This is from arch) + (license license:lgpl2.1+)))) -- 2.22.0