mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-pygobject@3.34.
* gnu/packages/glib.scm (python-pygobject-3.34): New public variable.
This commit is contained in:
parent
e53f9ce2df
commit
622d702f7e
1 changed files with 27 additions and 0 deletions
|
@ -708,6 +708,33 @@ (define-public python2-pygobject
|
|||
("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")
|
||||
|
|
Loading…
Reference in a new issue