From b6830016d2bcd3cd68d7eec61f2627677141b13f Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 25 Aug 2015 10:16:43 +0300 Subject: [PATCH] gnu: Add python-eyed3. * gnu/packages/python.scm (python-eyed3): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 940efec..6ef4303 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4629,3 +4629,25 @@ term.js Javascript terminal emulator library.") ,python2-backport-ssl-match-hostname) ,@(alist-delete "python-tornado" (package-propagated-inputs terminado))))))) + +(define-public python-eyed3 + (package + (name "python-eyed3") + (version "0.7.8") + (source (origin + (method url-fetch) + (uri (string-append "http://eyed3.nicfit.net/releases/eyeD3-" + version ".tar.gz")) + (sha256 + (base32 + "1nv7nhfn1d0qm7rgkzksbccgqisng8klf97np0nwaqwd5dbmdf86")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ;fail with: UserWarning: Duplicate name: 'paver/shell.py' + (home-page "http://eyed3.nicfit.net/") + (synopsis "Display and manipulate id3-tags on mp3 files") + (description "Eyed3 is a command-line editor to add/edit/remove ID3-tags +on mp3 files. It supports version 1.0, 1.1, 2.3 and 2.4 of the ID3 standard. +Additionally it displays several information about the file such as length and +bitrate from an MP3 file.") + (license gpl2+))) -- 2.5.0