diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2025-07-04 15:47:56 +0900 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-04 12:42:47 +0100 |
commit | e14ccf95b1249f3ec7ca4b672ff14f0d472f88b3 (patch) | |
tree | 88ac3d97122322ed18eaf8d44f354e60c1204a33 | |
parent | cf266688ddbfad62ab6a751dfed20c02dcad98d9 (diff) |
gnu: eyed3: Update to 0.9.8.
* gnu/packages/mp3.scm (eyed3): Update to 0.9.8.
[source]: Adjust pypi-uri name, PyPI style guide forces to use lowercase
and "_" in archive names.
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools and python-wheel.
[propagated-inputs]: Remove python-six.
Change-Id: Ie3b8ca11222f957227d4e1b889cc68522fabb8a5
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-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 |