From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7BxY-00046B-88 for guix-patches@gnu.org; Sat, 06 May 2017 22:30:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7BxV-0005Bh-3a for guix-patches@gnu.org; Sat, 06 May 2017 22:30:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60716) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7BxV-0005Bd-0V for guix-patches@gnu.org; Sat, 06 May 2017 22:30:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d7BxU-00031l-R5 for guix-patches@gnu.org; Sat, 06 May 2017 22:30:04 -0400 Subject: bug#26524: [PATCH 4/4] gnu: Add python-sure Resent-Message-ID: From: Muriithi Frederick Muriuki Date: Sun, 7 May 2017 05:29:43 +0300 Message-Id: <20170507022943.20427-4-fredmanglis@gmail.com> In-Reply-To: <20170507022943.20427-1-fredmanglis@gmail.com> References: <20170507022943.20427-1-fredmanglis@gmail.com> 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: 26524@debbugs.gnu.org * gnu/packages/python.scm (python-sure): New variable. --- gnu/packages/python.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3ae51f0..367e494 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14173,4 +14173,30 @@ for Flask.") @item Halstead metrics (all of them) @item the Maintainability Index (a Visual Studio metric) @end itemize") -(license license:expat))) + (license license:expat))) + +(define-public python-sure + (package + (name "python-sure") + (version "1.4.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sure" version)) + (sha256 + (base32 + "1hiyqnrwwghbjikzkvvdb2rhxnck8dvpjy1lq41fb1xwfzips71r")))) + (build-system python-build-system) + (propagated-inputs + `(("python-mock" ,python-mock) + ("python-six" ,python-six))) + (native-inputs + `(("python-nose" ,python-nose))) + (home-page + "http://github.com/gabrielfalcao/sure") + (synopsis + "Sure is an automated testing library in python for python") + (description + "Sure is a python library for python that leverages a DSL for writing assertions. +Sure is heavily inspired by @code{RSpec Expectations} and @code{should.js}") + (license license:gpl3))) -- 2.10.2