diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-05-16 14:27:56 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-07-02 17:50:20 +0200 |
commit | 2cde6e1de3e96648363303a0011feb584c472e19 (patch) | |
tree | 62357ec2395d584205f8b743cfac4eeeebe91206 | |
parent | 2cc63e6fcfea85117ab6b39fc3b076cfb64118cd (diff) | |
download | patches-2cde6e1de3e96648363303a0011feb584c472e19.tar patches-2cde6e1de3e96648363303a0011feb584c472e19.tar.gz |
gnu: Add python-commandlines.
* gnu/packages/python.scm (python-commandlines): New variable.
-rw-r--r-- | gnu/packages/python.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 263c1c9c36..c9b22e87ee 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13799,3 +13799,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))) |