gnu: python-imageio-ffmpeg: Improve style.

* gnu/packages/python-xyz.scm (python-imageio-ffmpeg): Improve style.

Change-Id: I2fe41000a9eb05d0e6b7e0adfecd8a55ad42ef0c
This commit is contained in:
Sharlatan Hellseher 2025-07-18 14:38:01 +01:00
parent 43b681535d
commit 95dea35990
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -12992,14 +12992,16 @@ arguments. It handles arbitrarily large (directed-acyclic) signal graphs.")
(package (package
(name "python-imageio-ffmpeg") (name "python-imageio-ffmpeg")
(version "0.5.1") (version "0.5.1")
(source (origin (source
(origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "imageio-ffmpeg" version)) (uri (pypi-uri "imageio-ffmpeg" version))
(sha256 (sha256
(base32 (base32 "0k284r1xsdp5h1s4k6nfsfzbkphf8g6r2llwjafhq2sn3yrskmqf"))))
"0k284r1xsdp5h1s4k6nfsfzbkphf8g6r2llwjafhq2sn3yrskmqf")))) (build-system pypthon-build-system)
(arguments (arguments
(list #:phases (list
#:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'hardcode-ffmpeg (add-after 'unpack 'hardcode-ffmpeg
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
@ -13008,14 +13010,17 @@ arguments. It handles arbitrarily large (directed-acyclic) signal graphs.")
(string-append "(" all " or \"" (string-append "(" all " or \""
(search-input-file inputs "bin/ffmpeg") (search-input-file inputs "bin/ffmpeg")
"\")")))))))) "\")"))))))))
(inputs (list ffmpeg)) (native-inputs
(native-inputs (list python-setuptools python-wheel)) (list python-setuptools
(build-system python-build-system) python-wheel))
(inputs
(list ffmpeg))
(home-page "https://github.com/imageio/imageio-ffmpeg") (home-page "https://github.com/imageio/imageio-ffmpeg")
(synopsis "FFMPEG wrapper for Python") (synopsis "FFMPEG wrapper for Python")
(description "This package provides an FFMPEG wrapper for working with video (description
files. It implements generator functions for reading and writing data to and "This package provides an FFMPEG wrapper for working with video files.
from FFMPEG, reliably terminating the process when done.") It implements generator functions for reading and writing data to and from
FFMPEG, reliably terminating the process when done.")
(license license:bsd-2))) (license license:bsd-2)))
(define-public python-imageio-freeimage (define-public python-imageio-freeimage