guix-patches
[Top][All Lists]
Advanced

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

[bug#31980] [PATCH 1/3] gnu: Add python-commandlines.


From: Nicolas Goaziou
Subject: [bug#31980] [PATCH 1/3] gnu: Add python-commandlines.
Date: Tue, 26 Jun 2018 19:21:05 +0200

* gnu/packages/python.scm (python-commandlines): New variable.
---
 gnu/packages/python.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 2f7d4dac0..646f5f657 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13791,3 +13791,23 @@ Let's Encrypt.")
 
 (define-public python2-dns-lexicon
   (package-with-python2 python-dns-lexicon))
+
+(define-public python-commandlines
+  (package
+    (name "python-commandlines")
+    (version "0.4.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "commandlines" version))
+       (sha256
+        (base32
+         "0r7xcr0knv02p4mswa2bng61nn8nbhhrs6kvdnb9bb3hhjvm1dl6"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/chrissimpkins/commandlines";)
+    (synopsis "Command line argument to object parsing library")
+    (description
+     "@code{Commandlines} is a Python library for command line application
+development that supports command line argument parsing, command string
+validation testing and application logic.")
+    (license license:expat)))
-- 
2.18.0






reply via email to

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