[bug#77956,gnome-team,21/23] gnu: python-gst: Update to 1.26.0.

Message ID 2e2f98fece63ddabbf64ebf028222eda53e0ef0c.1745243273.git.liliana.prikler@gmail.com
State New
Headers
Series Start working on GNOME 48 |

Commit Message

Liliana Marie Prikler April 21, 2025, 1:47 p.m. UTC
  * gnu/packages/gstreamer.scm (python-gst): Update to 1.26.0.
[propagated-inputs]: Add gst-plugins-bad and gst-rtsp-server.
---
 gnu/packages/gstreamer.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
  

Patch

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 29c983f4937..39dadc32ce4 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -1174,7 +1174,7 @@  (define-public gst-rtsp-server
 (define-public python-gst
   (package
     (name "python-gst")
-    (version "1.24.9")
+    (version "1.26.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -1182,7 +1182,7 @@  (define-public python-gst
                     "gst-python-" version ".tar.xz"))
               (sha256
                (base32
-                "0bplhfnvsi3l9fmfb346n2dvzi1jrxqpp4kcwiwsrjrlgic1vrl0"))))
+                "1nxq7wmdwailwhdq9mzm0rd2xmhpin8d276h39kibfvssw2nl175"))))
     (build-system meson-build-system)
     (arguments
      (list
@@ -1198,7 +1198,10 @@  (define-public python-gst
     (native-inputs
      (list pkg-config python))
     (propagated-inputs
-     (list gst-plugins-base python-pygobject))
+     (list gst-plugins-base
+           gst-plugins-bad              ; for gst-analytics
+           gst-rtsp-server
+           python-pygobject))
     (home-page "https://gstreamer.freedesktop.org/")
     (synopsis "GStreamer GObject Introspection overrides for Python")
     (description