guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add python-pygobject@3.34.


From: guix-commits
Subject: 01/02: gnu: Add python-pygobject@3.34.
Date: Tue, 29 Oct 2019 11:37:30 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 622d702f7eba30ed26a96168e17dd4fe3e31f084
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Oct 29 16:33:18 2019 +0100

    gnu: Add python-pygobject@3.34.
    
    * gnu/packages/glib.scm (python-pygobject-3.34): New public variable.
---
 gnu/packages/glib.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index c558d9f..33e569a 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -708,6 +708,33 @@ useful for C++.")
        ("pkg-config" ,pkg-config)
        ("python-pytest" ,python2-pytest)))))
 
+;; Newer version of this core-updates package, for Lollypop.
+(define-public python-pygobject-3.34
+  (package/inherit
+   python-pygobject
+   (version "3.34.0")
+   (source
+    (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnome/sources/pygobject/"
+                          (version-major+minor version)
+                          "/pygobject-" version ".tar.xz"))
+      (sha256
+       (base32 "06i7ynnbvgpz0gw09zsjbvhgcp5qz4yzdifw27qjwdazg2mckql7"))))
+   (build-system meson-build-system)
+   (arguments
+    `(#:phases
+      (modify-phases %standard-phases
+        (add-after 'unpack 'delete-broken-tests
+          (lambda _
+            (with-directory-excursion "tests"
+              (for-each
+               delete-file
+               ;; FIXME: these tests require Gdk and/or Gtk 4.
+               '("test_atoms.py"
+                 "test_overrides_gtk.py")))
+            #t)))))))
+
 (define-public perl-glib
   (package
     (name "perl-glib")



reply via email to

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