From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46878) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1irBU2-0001Lz-SF for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1irBU1-0008Nj-N9 for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54589) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1irBU1-0008NQ-Jp for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1irBU1-0005Qo-K9 for guix-patches@gnu.org; Mon, 13 Jan 2020 20:59:05 -0500 Subject: [bug#39128] [PATCH 10/12] gnu: Add python-argh. Resent-Message-ID: From: Julien Lepiller Date: Tue, 14 Jan 2020 02:57:37 +0100 Message-Id: <20200114015739.14432-10-julien@lepiller.eu> In-Reply-To: <20200114015739.14432-1-julien@lepiller.eu> References: <20200114025253.3a99b3c7@tachikoma.lepiller.eu> <20200114015739.14432-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39128@debbugs.gnu.org * gnu/packages/python-xyz.scm (python-argh): New variable. --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5041042a0c..0b818d12e5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17183,3 +17183,25 @@ for file systems paths.") (description "This package allows Python developpers to capture their standard output and standard error.") (license license:expat))) + +(define-public python-argh + (package + (name "python-argh") + (version "0.26.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "argh" version)) + (sha256 + (base32 + "0rdv0n2aa181mkrybwvl3czkrrikgzd4y2cri6j735fwhj65nlz9")))) + (build-system python-build-system) + (native-inputs + `(("python-iocapture" ,python-iocapture) + ("python-mock" ,python-mock) + ("python-pytest" ,python-pytest))) + (home-page "https://github.com/neithere/argh/") + (synopsis "Argparse wrapper with natural syntax") + (description "This package provides a parser for dealing with command-line +arguments in Python.") + (license license:lgpl3))) -- 2.24.0