gnu: eyed3: Update to 0.8, build with python3.
* gnu/packages/mp3.scm (eyed3): [source] Update to 0.8. [arguments]: Disable tests; don't use python-2. [propagated-inputs]: Add python-six and python-grako. [native-inputs]: Remove.
This commit is contained in:
parent
a70b03d413
commit
33485fa913
|
@ -462,7 +462,7 @@ compression format (.mpc files).")
|
||||||
(define-public eyed3
|
(define-public eyed3
|
||||||
(package
|
(package
|
||||||
(name "eyed3")
|
(name "eyed3")
|
||||||
(version "0.7.10")
|
(version "0.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -470,14 +470,13 @@ compression format (.mpc files).")
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wjicszs64ksj2y5jbk09yjd08znc1qnarlq8ssmx13f2d4x59wq"))))
|
"1dcswb0f6w3b05s1v43pq8fmavkd5g88ysndn9160wlaa1v9n40h"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:python ,python-2))
|
`(#:tests? #f)) ; the required test data contains copyrighted material.
|
||||||
(native-inputs
|
(propagated-inputs
|
||||||
`(("python2-nose" ,python2-nose)
|
`(("python-six" ,python-six)
|
||||||
("python2-sphinx" ,python2-sphinx)
|
("python-grako" ,python-grako)))
|
||||||
("python2-coverage" ,python2-coverage)))
|
|
||||||
(synopsis "MP3 tag ID3 metadata editor")
|
(synopsis "MP3 tag ID3 metadata editor")
|
||||||
(description "eyeD3 is a Python tool for working with audio files,
|
(description "eyeD3 is a Python tool for working with audio files,
|
||||||
specifically mp3 files containing ID3 metadata (i.e. song info). It provides a
|
specifically mp3 files containing ID3 metadata (i.e. song info). It provides a
|
||||||
|
|
Loading…
Reference in New Issue