From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eM1CT-0004Ut-Mf for guix-patches@gnu.org; Mon, 04 Dec 2017 19:35:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eM1CP-00011p-Vi for guix-patches@gnu.org; Mon, 04 Dec 2017 19:35:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:37448) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eM1CP-00011c-SM for guix-patches@gnu.org; Mon, 04 Dec 2017 19:35:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eM1CP-0005Ua-Mr for guix-patches@gnu.org; Mon, 04 Dec 2017 19:35:01 -0500 Subject: [bug#29571] [PATCH 1/2] gnu: Add python-olefile. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37821) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eM1C6-0003XP-9z for guix-patches@gnu.org; Mon, 04 Dec 2017 19:34:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eM1C3-0000x0-9R for guix-patches@gnu.org; Mon, 04 Dec 2017 19:34:42 -0500 Received: from mout01.posteo.de ([185.67.36.65]:58121) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eM1C3-0000uM-3S for guix-patches@gnu.org; Mon, 04 Dec 2017 19:34:39 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id D946720DF8 for ; Tue, 5 Dec 2017 01:34:28 +0100 (CET) From: Kei Kebreau Date: Mon, 4 Dec 2017 19:34:21 -0500 Message-Id: <20171205003422.18643-1-kkebreau@posteo.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29571@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/python.scm (python-olefile): 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 01b4e2cd2..4304cd7f5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3643,6 +3643,29 @@ Python's distutils.") services for your Python modules and applications.") (license license:lgpl3+))) +(define-public python-olefile + (package + (name "python-olefile") + (version "0.44") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/decalage2/olefile/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1wmxbrhyqjry2000zx0zdhqdqxhgi06nz7sbzjlh222q2zjv1gpj")))) + (build-system python-build-system) + (home-page + "https://www.decalage.info/python/olefileio") + (synopsis "Read and write Microsoft OLE2 files.") + (description + "@code{olefile} can parse, read and write Microsoft OLE2 files (Structured +Storage or Compound Document, Microsoft Office). It is an improved version of +the OleFileIO module from PIL, the Python Image Library.") + (license license:bsd-3))) + (define-public python-pillow (package (name "python-pillow") -- 2.15.0