diff options
author | Liliana Marie Prikler <[email protected]> | 2024-10-19 17:40:51 +0200 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:33 +0100 |
commit | dae7f8b822f78943927c8d42b9d799d147c5fefa (patch) | |
tree | 7648ffbd7756cb26c7b8acf01730bd93f3bdc10f /gnu/packages/glib.scm | |
parent | e289080871023e953fe2d20350fbde9db556e84b (diff) |
gnu: python-pygobject: Update to 3.50.0.
* gnu/packages/glib.scm (python-pygobject): Update to 3.50.0.
(python-pygobject-3.48): Delete variable.
* gnu/packages/gstreamer.scm (python-gst): Adjust accordingly.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 79aeec4ffc..3195a3762c 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -1063,7 +1063,7 @@ useful for C++.") (define-public python-pygobject (package (name "python-pygobject") - (version "3.47.0") + (version "3.50.0") (source (origin (method url-fetch) @@ -1072,7 +1072,7 @@ useful for C++.") "/pygobject-" version ".tar.xz")) (sha256 (base32 - "082dpm34a350bnhgmkdv8myxzjgnrflckkpn46vnvs36f7bbfdij")) + "04i28xrb9fxkmn9j2mmsl0lbmk9blgjcl8hnxrbx90d8nmsnx0wd")) (modules '((guix build utils))) (snippet ;; We disable these tests in a snippet so that they are inherited @@ -1112,20 +1112,6 @@ useful for C++.") '((upstream-name . "pygobject"))) (license license:lgpl2.1+))) -(define-public python-pygobject-3.48 - (package - (inherit python-pygobject) - (version "3.48.2") - (source - (origin - (inherit (package-source python-pygobject)) - (uri (string-append "mirror://gnome/sources/pygobject/" - (version-major+minor version) - "/pygobject-" version ".tar.xz")) - (sha256 - (base32 - "19yii8lydnjw225k4gclhn8hya7caiginqi0mj9a0cdym6sax507")))))) - (define-public perl-glib (package (name "perl-glib") |