diff options
-rw-r--r-- | gnu/packages/mp3.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm index a435620e34..d2b97372d1 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net> ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org> +;;; Copyright © 2025 Nguyễn Gia Phong <mcsinyx@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -631,20 +632,18 @@ compression format (.mpc files).") (define-public eyed3 (package (name "eyed3") - (version "0.9.7") + (version "0.9.8") (source (origin (method url-fetch) - (uri (pypi-uri "eyeD3" version)) + (uri (pypi-uri "eyed3" version)) (sha256 - (base32 "03ygqns4ibq0nnbvdm1pk97nzyqrl76df2cl9w8lasipjf9qxcck")))) - (build-system python-build-system) + (base32 "00wqmy7x8g25h75ajc9vcd3nxny7a3k17h8qnpbvb9fmv13yz5m2")))) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) ; the required test data contains copyrighted material - (propagated-inputs - (list python-deprecation - python-filetype - python-six)) + (native-inputs (list python-setuptools python-wheel)) + (propagated-inputs (list python-deprecation python-filetype)) (synopsis "MP3 tag ID3 metadata editor") (description "eyeD3 is a Python tool for working with audio files, specifically mp3 files containing ID3 metadata (i.e. song info). It provides a |