about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMuriithi Frederick Muriuki2017-01-25 15:56:36 +0300
committerMuriithi Frederick Muriuki2017-01-25 15:56:36 +0300
commit66ab412dfd1c85dba9631682946362a02987e1f8 (patch)
treec6b3966fa6a5b0231ed285ff5b053e719f263e92
parentcfa7319eaca1073fa570d91969be7da88dc1ddd1 (diff)
downloadguix-bioinformatics-66ab412dfd1c85dba9631682946362a02987e1f8.tar.gz
python.scm: Add new package python-mando
-rw-r--r--gn/packages/python.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 97befcf..8f10c2f 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -486,3 +486,29 @@ numpy package, though some legacy software still uses the older versions.")
      "Python module dedicated to rendering RST (reStructuredText) documents to
  ansi-escaped strings suitable for display in a terminal")
     (license license:expat)))
+
+(define-public python-mando
+  (package
+    (name "python-mando")
+    (version "0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://pypi.python.org/packages/2b/52/684d9ab8c2ccfb611275f2e44d3ebc76a6a6"
+             "c56f4afacd2e91237fa07ec3/mando-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "1bicmnxzxi9bxz9bfgv2rk7297f5rbwc9v2hg2rqfqr6h27zjgw5"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-rst2ansi" ,python-rst2ansi)))
+    (home-page "https://mando.readthedocs.org/")
+    (synopsis
+     "Wrapper around argparse, allowing creation of complete CLI applications")
+    (description
+     "This package is a wrapper around argparse, allowing you to write complete CLI
+ applications in seconds while maintaining all the flexibility")
+    (license license:expat)))