1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

Merge branch 'master' into staging

This commit is contained in:
Marius Bakke 2018-07-08 23:58:22 +02:00
commit 873325b030
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
85 changed files with 2897 additions and 16902 deletions

View file

@ -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)))