This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9304f636de gnu: yt-dlp: Update to 2025.07.21.
9304f636de is described below

commit 9304f636de7c8a3e5958dd5e2de0434b4f2f7298
Author: Ian Eure <[email protected]>
AuthorDate: Mon Aug 4 17:48:16 2025 -0700

    gnu: yt-dlp: Update to 2025.07.21.
    
    * gnu/packages/video.scm (yt-dlp): Update to 2025.07.21.
    
    Change-Id: Ibb622c89db35299df3241395e4426ed207b6bfb9
---
 gnu/packages/video.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index cbdb31e3fe..98cca568fc 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3231,7 +3231,7 @@ YouTube.com and many more sites.")
 (define-public yt-dlp
   (package
     (name "yt-dlp")
-    (version "2025.06.30")
+    (version "2025.07.21")
     (source
      (origin
        (method git-fetch)
@@ -3243,7 +3243,7 @@ YouTube.com and many more sites.")
        (snippet '(substitute* "pyproject.toml"
                    (("^.*Programming Language :: Python :: 3\\.13.*$") "")))
        (sha256
-        (base32 "14pk2rk5vm9469ghkvciaz74fihbl8dfi27qj6xnxv71hpm5w03p"))))
+        (base32 "051y9pb2imdrpi065d9l2xfmd68l22ahbz90z81yqv7kv84j9mal"))))
     (build-system pyproject-build-system)
     (arguments
      `(#:tests? ,(not (%current-target-system))
@@ -3277,7 +3277,17 @@ YouTube.com and many more sites.")
          (replace 'check
            (lambda* (#:key tests? test-flags #:allow-other-keys)
              (when tests?
-               (apply invoke "pytest" "-k" "not download" test-flags)))))))
+               (apply invoke "pytest"
+                      "-k"
+                      (string-append
+                       "not download"
+                       ;; TestHTTPRequestHandler tests are disabled due to
+                       ;; https://github.com/yt-dlp/yt-dlp/issues/13927
+                       " and not "
+                       "test_incompleteread"
+                       " and not "
+                       "test_partial_read_then_full_read")
+                      test-flags)))))))
     (inputs (list ffmpeg python-brotli
                   python-certifi
                   python-mutagen

Reply via email to