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 /gnu | |
| 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>
Diffstat (limited to 'gnu')
| -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 a435620e347..d2b97372d10 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | ;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net> | 14 | ;;; Copyright © 2022 Joeke de Graaf <joeke@posteo.net> |
| 15 | ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> | 15 | ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> |
| 16 | ;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org> | 16 | ;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org> |
| 17 | ;;; Copyright © 2025 Nguyễn Gia Phong <mcsinyx@disroot.org> | ||
| 17 | ;;; | 18 | ;;; |
| 18 | ;;; This file is part of GNU Guix. | 19 | ;;; This file is part of GNU Guix. |
| 19 | ;;; | 20 | ;;; |
| @@ -631,20 +632,18 @@ compression format (.mpc files).") | |||
| 631 | (define-public eyed3 | 632 | (define-public eyed3 |
| 632 | (package | 633 | (package |
| 633 | (name "eyed3") | 634 | (name "eyed3") |
| 634 | (version "0.9.7") | 635 | (version "0.9.8") |
| 635 | (source | 636 | (source |
| 636 | (origin | 637 | (origin |
| 637 | (method url-fetch) | 638 | (method url-fetch) |
| 638 | (uri (pypi-uri "eyeD3" version)) | 639 | (uri (pypi-uri "eyed3" version)) |
| 639 | (sha256 | 640 | (sha256 |
| 640 | (base32 "03ygqns4ibq0nnbvdm1pk97nzyqrl76df2cl9w8lasipjf9qxcck")))) | 641 | (base32 "00wqmy7x8g25h75ajc9vcd3nxny7a3k17h8qnpbvb9fmv13yz5m2")))) |
| 641 | (build-system python-build-system) | 642 | (build-system pyproject-build-system) |
| 642 | (arguments | 643 | (arguments |
| 643 | `(#:tests? #f)) ; the required test data contains copyrighted material | 644 | `(#:tests? #f)) ; the required test data contains copyrighted material |
| 644 | (propagated-inputs | 645 | (native-inputs (list python-setuptools python-wheel)) |
| 645 | (list python-deprecation | 646 | (propagated-inputs (list python-deprecation python-filetype)) |
| 646 | python-filetype | ||
| 647 | python-six)) | ||
| 648 | (synopsis "MP3 tag ID3 metadata editor") | 647 | (synopsis "MP3 tag ID3 metadata editor") |
| 649 | (description "eyeD3 is a Python tool for working with audio files, | 648 | (description "eyeD3 is a Python tool for working with audio files, |
| 650 | specifically mp3 files containing ID3 metadata (i.e. song info). It provides a | 649 | specifically mp3 files containing ID3 metadata (i.e. song info). It provides a |
