all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ben Woodcroft <b.woodcroft@uq.edu.au>
To: "guix-devel@gnu.org" <guix-devel@gnu.org>
Subject: [PATCH] gnu: Add python-xlrd.
Date: Sat, 19 Sep 2015 23:38:41 +1000	[thread overview]
Message-ID: <55FD6561.8050608@uq.edu.au> (raw)

[-- Attachment #1: Type: text/plain, Size: 30 bytes --]

Thanks in advance for review.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-python-xlrd.patch --]
[-- Type: text/x-patch; name="0001-gnu-Add-python-xlrd.patch", Size: 2284 bytes --]

From cb470509de810ea93ac4e576bb0347225b68ad98 Mon Sep 17 00:00:00 2001
From: Ben Woodcroft <donttrustben@gmail.com>
Date: Sat, 19 Sep 2015 23:35:18 +1000
Subject: [PATCH] gnu: Add python-xlrd.

* gnu/packages/python.scm (python-xlrd, python2-xlrd): New variables.
---
 gnu/packages/python.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 408064d..b9ecf3e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
 ;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
+;;; Copyright © 2015 Ben Woodcroft <donttrustben@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4880,3 +4881,39 @@ object to help create WSGI responses.")
 
 (define-public python2-webob
   (package-with-python2 python-webob))
+
+(define-public python-xlrd
+  (package
+    (name "python-xlrd")
+    (version "0.9.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://pypi.python.org/packages/source/x/xlrd/xlrd-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0wpa55nvidmm5m2qr622dsh3cj46akdk0h3zjgzschcmydck73cf"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; current test in setup.py does not work as of 0.9.4,
+         ;; so use nose to run tests instead for now.
+         (replace 'check (lambda _ (zero? (system* "nosetests")))))))
+    (native-inputs
+     `(("python-setuptools" ,python2-setuptools)
+       ("python-nose" ,python2-nose)))
+    (home-page "http://www.python-excel.org/")
+    (synopsis
+     "Library for extracting data from Microsoft Excel (tm) files")
+    (description
+     "Extract data from Excel spreadsheets (.xls and .xlsx, versions 2.0
+onwards) on any platform.  It is pure Python (2.6, 2.7, 3.2+), has support for
+Excel dates and is Unicode-aware.")
+    (license bsd-3)))
+
+(define-public python2-xlrd
+  (package-with-python2 python-xlrd))
-- 
2.4.3


             reply	other threads:[~2015-09-19 13:38 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-19 13:38 Ben Woodcroft [this message]
2015-09-19 15:49 ` [PATCH] gnu: Add python-xlrd Mathieu Lirzin
2015-09-19 15:53   ` Andreas Enge
2015-09-19 20:08   ` Ricardo Wurmus
2015-09-19 20:37     ` Mathieu Lirzin
2015-09-20  0:48       ` Ben Woodcroft
2015-09-27 20:10         ` Ludovic Courtès
2015-10-01 21:48           ` Mathieu Lirzin
2015-09-20  7:41       ` Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55FD6561.8050608@uq.edu.au \
    --to=b.woodcroft@uq.edu.au \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.