From cf266688ddbfad62ab6a751dfed20c02dcad98d9 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 4 Jul 2025 01:52:24 +0200 Subject: [PATCH] gnu: python-av: Update to 14.4.0. * gnu/packages/python-xyz.scm (python-av): Update to 14.4.0. [arguments]{test-flags}: Update them. [native-inputs]: Replace python-setuptools by python-setuptools-next. [inputs]: Use ffmpeg-7. Change-Id: Ic860d50b1327de4f74ba86e841632aeffef67079 Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4780af5112fca0c84f9f86bfa0869ce9767ad6ae..424cd0bd86c43d89c1687cdcbfced12df80337db 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12666,22 +12666,23 @@ experimental data and metadata at the Laboratory for Fluorescence Dynamics.") (define-public python-av (package (name "python-av") - (version "13.1.0") + (version "14.4.0") (source (origin (method url-fetch) (uri (pypi-uri "av" version)) (sha256 - (base32 "0zn10vcj4mk6m06w3i9vvc0k06bg0c7cc9lcxfb8azc4amn77nnk")))) + (base32 "0hjb0v8pqq2f7w64zcmz216ymykb1n1s1bgdq0lp5xpxlw1zijry")))) (build-system pyproject-build-system) (arguments (list + ;; Upstream is not great in responding to open issues or change requests. + ;; See: + ;; - + ;; - + ;; - #:test-flags - #~(list - "-k" (string-join - (list "not test_pts_assertion_same_rate" - "test_writing_to_custom_io_dash") - " and not ")) + #~(list "-k" "not test_writing_to_custom_io_dash") #:phases #~(modify-phases %standard-phases (add-before 'check 'build-extensions @@ -12699,10 +12700,10 @@ experimental data and metadata at the Laboratory for Fluorescence Dynamics.") python-numpy python-pillow python-pytest - python-setuptools + python-setuptools-next python-wheel)) (inputs - (list ffmpeg)) + (list ffmpeg-7)) (home-page "https://github.com/PyAV-Org/PyAV") (synopsis "Pythonic bindings for FFmpeg's libraries") (description