From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: [PATCH] gnu: Add docopt. Date: Thu, 3 Dec 2015 01:24:09 -0500 Message-ID: <1449123849-13644-1-git-send-email-kyle@kyleam.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53915) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4NK2-0005L6-5Z for guix-devel@gnu.org; Thu, 03 Dec 2015 01:24:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4NJz-0000za-1k for guix-devel@gnu.org; Thu, 03 Dec 2015 01:24:54 -0500 Received: from pb-smtp0.int.icgroup.com ([208.72.237.35]:51043 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4NJy-0000zL-SG for guix-devel@gnu.org; Thu, 03 Dec 2015 01:24:50 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel Cc: Kyle Meyer * gnu/packages/python.scm (python-docopt, python2-docopt): New variables. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 45222e9..5b31ae8 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5994,3 +5994,29 @@ automatically detect a wide range of file encodings.") (define-public python2-chardet (package-with-python2 python-chardet)) + +(define-public python-docopt + (package + (name "python-docopt") + (version "0.6.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "docopt" version)) + (sha256 + (base32 + "14f4hn6d1j4b99svwbaji8n2zj58qicyz19mm0x6pmhb50jsics9")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (arguments '(#:tests? #f)) ; Tests are not included in the PyPI release. + (home-page "http://docopt.org") + (synopsis "Command-line interface description language for Python") + (description "This library allows the user to define a command-line +interface from a program's help message rather than specifying it +programatically with command-line parsers like @code{getopt} and +@code{argparse}.") + (license license:expat))) + +(define-public python2-docopt + (package-with-python2 python-docopt)) -- 2.6.2