~ruther/guix-local

dd643d781f31a0ccdf60c506054159c2f624868e — Patrick Norton 3 months ago e3f3f2d
gnu: yt-dlp: Update to 2025.11.12.

* gnu/packages/video.scm (yt-dlp): Update to 2025.11.12.
[arguments]: Ignore additional failing tests.

Change-Id: I38725750a1761937f76e5397795886d4b3ca1f6c
Signed-off-by: Andreas Enge <andreas@enge.fr>
1 files changed, 5 insertions(+), 3 deletions(-)

M gnu/packages/video.scm
M gnu/packages/video.scm => gnu/packages/video.scm +5 -3
@@ 3180,7 3180,7 @@ video streaming services of the Finnish national broadcasting company Yle.")
(define-public yt-dlp
  (package
    (name "yt-dlp")
    (version "2025.10.22")
    (version "2025.11.12")
    (source
     (origin
       (method git-fetch)


@@ 3192,12 3192,14 @@ video streaming services of the Finnish national broadcasting company Yle.")
       (snippet #~(substitute* "pyproject.toml"
                    (("^.*Programming Language :: Python :: 3\\.13.*$") "")))
       (sha256
        (base32 "19viqfk3gnl6yk9p17kp0a21w18yr32qii4grm3mys758ws881ld"))))
        (base32 "18kqf4z4r6ls9bik8jbwqbj5j4fai7xjhgn8p7pjgkd2q0nhavqj"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #:tests? (not (%current-target-system))
      #:test-flags #~'("--ignore=test/test_websockets.py")
      #:test-flags #~'("--ignore=test/test_websockets.py"
                       "--deselect=test/test_socks.py::TestSocks4Proxy::test_socks4_errors"
                       "--deselect=test/test_socks.py::TestSocks5Proxy::test_socks5_ipv4_target")
      #:phases
      #~(modify-phases %standard-phases
          ;; See <https://issues.guix.gnu.org/43418#5>.