all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Cyril Roelandt <tipecaml@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH 1/5] gnu: Add python-prettytable
Date: Thu, 17 Sep 2015 16:23:45 +0200	[thread overview]
Message-ID: <1442499829-13894-2-git-send-email-tipecaml@gmail.com> (raw)
In-Reply-To: <1442499829-13894-1-git-send-email-tipecaml@gmail.com>

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 408064d..1818993 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4880,3 +4880,31 @@ object to help create WSGI responses.")
 
 (define-public python2-webob
   (package-with-python2 python-webob))
+
+(define-public python-prettytable
+  (package
+    (name "python-prettytable")
+    (version "0.7.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://pypi.python.org/packages/source/P/PrettyTable/"
+             "prettytable-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "0diwsicwmiq2cpzpxri7cyl5fmsvicafw6nfqf6p6p322dji2g45"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-setuptools" ,python-setuptools)))
+    (home-page "http://code.google.com/p/prettytable/")
+    (synopsis "Display tabular data in an ASCII table format")
+    (description
+      "A library designed to represent tabular data in visually appealing ASCII
+tables.  PrettyTable allows for selection of which columns are to be printed,
+independent alignment of columns (left or right justified or centred) and
+printing of sub-tables by specifying a row range.")
+    (license bsd-3)))
+
+(define-public python2-prettytable
+  (package-with-python2 python-prettytable))
-- 
2.1.4

  reply	other threads:[~2015-09-17 14:24 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-17 14:23 [PATCH 0/5] New packages, simple fixes for openstack/python Cyril Roelandt
2015-09-17 14:23 ` Cyril Roelandt [this message]
2015-09-17 17:27   ` [PATCH 1/5] gnu: Add python-prettytable Mathieu Lirzin
2015-09-17 14:23 ` [PATCH 2/5] gnu: Fix the definition of python2-pyflakes-0.8.1 Cyril Roelandt
2015-09-17 14:23 ` [PATCH 3/5] gnu: Add python2-pyflakes Cyril Roelandt
2015-09-17 17:32   ` Mathieu Lirzin
2015-09-17 14:23 ` [PATCH 4/5] gnu: Add python-mccabe-0.2.1 Cyril Roelandt
2015-09-17 17:38   ` Mathieu Lirzin
2015-09-17 18:57     ` Cyril Roelandt
2015-09-17 14:23 ` [PATCH 5/5] gnu: Add python2-keyring Cyril Roelandt
2015-09-17 15:26   ` Ricardo Wurmus
2015-09-20  2:44 ` [PATCH 0/5] New packages, simple fixes for openstack/python Cyril Roelandt

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=1442499829-13894-2-git-send-email-tipecaml@gmail.com \
    --to=tipecaml@gmail.com \
    --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.