From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 01/31] gnu: Add python-exif-read. Date: Fri, 5 Sep 2014 11:18:07 -0400 Message-ID: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60899) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvHs-0000kY-0T for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvHk-0003XO-4I for guix-devel@gnu.org; Fri, 05 Sep 2014 11:18:55 -0400 Received: from na3sys009aog122.obsmtp.com ([74.125.149.147]:41129) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvHj-0003XG-T4 for guix-devel@gnu.org; Fri, 05 Sep 2014 11:18:48 -0400 Received: by mail-yh0-f51.google.com with SMTP id i57so686699yha.10 for ; Fri, 05 Sep 2014 08:18:46 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-exif-read, python2-exif-read): New variables. --- gnu/packages/python.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 641a5df..17147b9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -968,3 +968,30 @@ technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. Behave uses tests written in a natural language style, backed up by Python code.") (license x11))) + +(define-public python-exif-read + (package + (name "python-exif-read") + (version "1.4.2") + (source (origin + (method url-fetch) + (uri + (string-append + "https://pypi.python.org/packages/source/E/ExifRead/ExifRead-" + version ".tar.gz")) + (sha256 + (base32 + "17c627gcdmyc05hz4zk8qs4pjgw6rc68qzjzgz8gh1cmpsd7acf1")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (arguments `(#:tests? #f)) ; no tests + (home-page "https://github.com/ianare/exif-py") + (synopsis "Python library to extract EXIF data from image files") + (description + "ExifRead is a Python library to extract EXIF data from tiff and jpeg +files.") + (license bsd-3))) + +(define-public python2-exif-read + (package-with-python2 python-exif-read)) -- 2.0.1