diff options
author | Leo Famulari <leo@famulari.name> | 2018-04-09 00:38:06 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-04-09 00:41:14 -0400 |
commit | 1825ce8063289742a395f0fd3966a6522a9225dd (patch) | |
tree | 620357728dcb6de9bc05f0f6d94d73fbfd92d042 /gnu | |
parent | 78602fad579cd73e26eb44e8ea4538ee88409e8b (diff) | |
download | guix-1825ce8063289742a395f0fd3966a6522a9225dd.tar guix-1825ce8063289742a395f0fd3966a6522a9225dd.tar.gz |
gnu: eyeD3: Update to 0.8.5.
* gnu/packages/mp3.scm (eyed3): Update to 0.8.5.
[source]: Use pypi-uri.
[propagated-inputs]: Add python-magic and python-pathlib.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mp3.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm index f57ebf575a..2b3af51c4f 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm @@ -468,21 +468,21 @@ compression format (.mpc files).") (define-public eyed3 (package (name "eyed3") - (version "0.8") + (version "0.8.5") (source (origin (method url-fetch) - (uri (string-append - "http://eyed3.nicfit.net/releases/eyeD3-" - version ".tar.gz")) + (uri (pypi-uri "eyeD3" version)) (sha256 (base32 - "1dcswb0f6w3b05s1v43pq8fmavkd5g88ysndn9160wlaa1v9n40h")))) + "0rkx859z82wqnfb0dzpa1647cq43aqb39ri9rd5r3jz597qr9zdd")))) (build-system python-build-system) (arguments `(#:tests? #f)) ; the required test data contains copyrighted material. (propagated-inputs - `(("python-six" ,python-six) - ("python-grako" ,python-grako))) + `(("python-grako" ,python-grako) + ("python-magic" ,python-magic) + ("python-pathlib" ,python-pathlib) + ("python-six" ,python-six))) (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 |