diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-04 01:52:24 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-04 10:53:07 +0100 |
commit | cf266688ddbfad62ab6a751dfed20c02dcad98d9 (patch) | |
tree | b02034fd3e014908fd6894fec5117119d0dc5263 /gnu/packages/python-xyz.scm | |
parent | e7d5d3fb50a7605978c28dc6233a5a94afa14569 (diff) |
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 <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4780af5112..424cd0bd86 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: + ;; - <https://github.com/PyAV-Org/PyAV/issues/1942> + ;; - <https://github.com/PyAV-Org/PyAV/issues/1946> + ;; - <https://github.com/PyAV-Org/PyAV/pull/1944> #: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 |