guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: pyqt: Add versions based on non-modular Qt 5.5.


From: Andreas Enge
Subject: 02/03: gnu: pyqt: Add versions based on non-modular Qt 5.5.
Date: Mon, 25 Jul 2016 22:39:05 +0000 (UTC)

andreas pushed a commit to branch master
in repository guix.

commit 4a8c35e143a2e7101a6c3a96b67a02f2f8825984
Author: Andreas Enge <address@hidden>
Date:   Mon Jul 25 23:19:01 2016 +0200

    gnu: pyqt: Add versions based on non-modular Qt 5.5.
    
    * gnu/packages/qt.scm (python-pyqt-5.5, python2-pyqt-5.5): New variables.
---
 gnu/packages/qt.scm |   27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 6c1bbc3..f246550 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -910,6 +910,33 @@ contain over 620 classes.")
     (inputs
      `(("python" ,python-2)))))
 
+(define-public python-pyqt-5.5
+  (package (inherit python-pyqt)
+    (version "5.5")
+    (source
+      (origin
+        (method url-fetch)
+        (uri
+          (string-append "mirror://sourceforge/pyqt/PyQt5/"
+                         "PyQt-" version "/PyQt-gpl-"
+                         version ".tar.gz"))
+        (sha256
+         (base32
+          "056qmkv02wdcfblqdaxiswrgn4wa88sz22i1x58dpb1iniavplfd"))
+       (patches (search-patches "pyqt-configure.patch"))))
+    (native-inputs
+     `(("python-sip" ,python-sip)
+       ("qt" ,qt)))))
+
+(define-public python2-pyqt-5.5
+  (package (inherit python-pyqt-5.5)
+    (name "python2-pyqt")
+    (native-inputs
+     `(("python-sip" ,python2-sip)
+       ("qt" ,qt)))
+    (inputs
+     `(("python" ,python-2)))))
+
 (define-public python-pyqt-4
   (package (inherit python-pyqt)
     (name "python-pyqt")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]