guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.
commit f80ac59064f6b4516b2fa21dd2b73f60a0fbe699
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sat Apr 12 12:36:13 2025 +0200
gnu: python-gst: Update to 1.26.3.
* gnu/packages/gstreamer.scm (python-gst): Update to 1.26.3.
[propagated-inputs]: Add gst-plugins-bad and gst-rtsp-server.
(cherry picked from commit 71c8e360f63fa30196bdf84acf250689ab90e65f)
---
gnu/packages/gstreamer.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 4dcf49eef4..7f8e6c159a 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -1144,7 +1144,7 @@ RTSP connections and messages.")
(define-public python-gst
(package
(name "python-gst")
- (version "1.24.9")
+ (version "1.26.3")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1152,7 +1152,7 @@ RTSP connections and messages.")
"gst-python-" version ".tar.xz"))
(sha256
(base32
- "0bplhfnvsi3l9fmfb346n2dvzi1jrxqpp4kcwiwsrjrlgic1vrl0"))))
+ "04hv5pj8br56knvw1nsx74j1lpxskbm6znsdqac28iszqjkvjhwk"))))
(build-system meson-build-system)
(arguments
(list
@@ -1168,7 +1168,10 @@ RTSP connections and messages.")
(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