summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Eure <ian@retrospec.tv>2025-08-04 17:48:16 -0700
committerIan Eure <ian@retrospec.tv>2025-08-04 17:50:17 -0700
commit9304f636de7c8a3e5958dd5e2de0434b4f2f7298 (patch)
treeea22bbef4cd524df7558ea07f16083356c755caf
parent617250d96bf6526790f9511b73260b3e10356894 (diff)
gnu: yt-dlp: Update to 2025.07.21.
* gnu/packages/video.scm (yt-dlp): Update to 2025.07.21. Change-Id: Ibb622c89db35299df3241395e4426ed207b6bfb9
-rw-r--r--gnu/packages/video.scm16
1 files changed, 13 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index cbdb31e3fe9..98cca568fc1 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