guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/05: gnu: Add python-tabulate and python2-tabulate.


From: ???
Subject: 03/05: gnu: Add python-tabulate and python2-tabulate.
Date: Sat, 11 Jun 2016 04:53:42 +0000 (UTC)

iyzsong pushed a commit to branch master
in repository guix.

commit d951bd547cd9aadb16c1d324985055822cee50fc
Author: 宋文武 <address@hidden>
Date:   Tue Jun 7 21:52:42 2016 +0800

    gnu: Add python-tabulate and python2-tabulate.
    
    * gnu/packages/python.scm (python-tabulate, python2-tabulate): New 
variables.
---
 gnu/packages/python.scm |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 143fc14..70e4441 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -9037,3 +9037,35 @@ It uses LR parsing and does extensive error checking.")
     (inherit (package-with-python2
               (strip-python2-variant python-ply)))
     (native-inputs `(("python2-setuptools" ,python2-setuptools)))))
+
+(define-public python-tabulate
+  (package
+    (name "python-tabulate")
+    (version "0.7.5")
+    (source (origin
+             (method url-fetch)
+             (uri (pypi-uri "tabulate" version))
+             (sha256
+              (base32
+               "03l1r7ddd1a0j2snv1yd0hlnghjad3fg1an1jr8936ksv75slwch"))
+             ;; Fix tests
+             (modules '((guix build utils)))
+             (snippet '(substitute* '("test/test_cli.py"
+                                      "test/test_input.py"
+                                      "test/test_output.py"
+                                      "test/test_regression.py")
+                         (("from common") "from nose.tools")))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)
+       ;; For testing
+       ("python-nose" ,python-nose)))
+    (home-page "https://bitbucket.org/astanin/python-tabulate";)
+    (synopsis "Pretty-print tabular data")
+    (description
+     "Tabulate is a library and command-line utility to pretty-print tabular
+data in Python.")
+    (license license:expat)))
+
+(define-public python2-tabulate
+  (package-with-python2 python-tabulate))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]