From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Re: [PATCH 4/4] gnu: Add python-mando Date: Sun, 26 Mar 2017 15:16:05 +0000 Message-ID: <20170326151604.GD13943@monza> References: <20170326092335.3912-1-fredmanglis@gmail.com> <20170326092335.3912-4-fredmanglis@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs9vk-0007Ws-Co for guix-devel@gnu.org; Sun, 26 Mar 2017 11:18:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs9vf-0001ks-FH for guix-devel@gnu.org; Sun, 26 Mar 2017 11:18:08 -0400 Received: from mail.thebird.nl ([95.154.246.10]:34556) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cs9vf-0001kT-8K for guix-devel@gnu.org; Sun, 26 Mar 2017 11:18:03 -0400 Content-Disposition: inline In-Reply-To: <20170326092335.3912-4-fredmanglis@gmail.com> 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" To: Muriithi Frederick Muriuki Cc: guix-devel@gnu.org Pretty cool package :). Note that python-sphinx may default to latest if you update the package. Otherwise LGTM On Sun, Mar 26, 2017 at 12:23:35PM +0300, Muriithi Frederick Muriuki wrote: > * gnu/packages/python.scm (python-mando): New variable. > --- > gnu/packages/python.scm | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index a219bb3..1c750ee 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -13955,3 +13955,28 @@ unittest package. A parametrized test case is automatically converted to multip > cases. Since they are TestCase subclasses, they work with other test suites that > recognize TestCases.") > (license license:bsd-3))) > + > +(define-public python-mando > + (package > + (name "python-mando") > + (version "0.5") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "mando" version)) > + (sha256 > + (base32 > + "0q05h66439gqdmlk4jqm6xrwrzfdgs4mwk70barxhr2y83qbbdc0")))) > + (build-system python-build-system) > + (propagated-inputs > + `(("python-rst2ansi" ,python-rst2ansi))) > + (native-inputs > + `(("python-sphinx" ,python-sphinx-1.5.3) > + ("python-paramunittest" ,python-paramunittest))) > + (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))) > -- > 2.10.2 >