From ff94a5cf13b82d998324fb3d0a4a55dfb992cd86 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 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 940efec..7f4d3c5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2015 Ricardo Wurmus ;;; Copyright © 2015 Christopher Allan Webber ;;; Copyright © 2015 Eric Dvorsak +;;; Copyright © 2015 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -4629,3 +4630,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