From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54191) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iquSG-0005e4-Hz for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iquSF-0008SB-63 for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52609) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iquSA-0008HJ-Ce for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iquSA-0008Ei-AY for guix-patches@gnu.org; Mon, 13 Jan 2020 02:48:02 -0500 Subject: [bug#39028] [PATCH 1/7] gnu: Add python-shouldbe References: <20200108091001.GA32230@zpidnp36> In-Reply-To: <20200108091001.GA32230@zpidnp36> Resent-Message-ID: From: Lars-Dominik Braun Date: Mon, 13 Jan 2020 08:46:49 +0100 Message-Id: <20200113074655.11012-1-ldb@leibniz-psychology.org> 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: 39028@debbugs.gnu.org Cc: zimon.toutoune@gmail.com * gnu/packages/python-xyz.scm (python-shouldbe): New variable --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 194d8b8b0c..646d50697c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17117,3 +17117,28 @@ scripts to load entry points more quickly.") functional combinators. Parser combinators are just higher-order functions that take parsers as their arguments and return them as result values.") (license license:expat))) + +(define-public python-shouldbe + (package + (name "python-shouldbe") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "shouldbe" version)) + (sha256 + (base32 + "16zbvjxf71dl4yfbgcr6idyim3mdrfvix1dv8b95p0s9z07372pj")))) + (build-system python-build-system) + (propagated-inputs + `(("python-forbiddenfruit" ,python-forbiddenfruit))) + (native-inputs + `(("python-nose" ,python-nose))) + (home-page + "https://github.com/directxman12/should_be") + (synopsis + "Python Assertion Helpers inspired by Shouldly") + (description + "Python Assertion Helpers inspired by Shouldly") + (license license:isc))) + -- 2.20.1