From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dHUSy-0005GD-OE for guix-patches@gnu.org; Sun, 04 Jun 2017 08:17:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dHUSt-0001sr-Pw for guix-patches@gnu.org; Sun, 04 Jun 2017 08:17:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52015) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dHUSt-0001sl-Lp for guix-patches@gnu.org; Sun, 04 Jun 2017 08:17:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dHUSt-0002fz-DO for guix-patches@gnu.org; Sun, 04 Jun 2017 08:17:03 -0400 Subject: bug#26524: [PATCH 1/5] gnu: Add python-sure Resent-Message-ID: From: Marius Bakke In-Reply-To: <20170528153241.15637-1-fredmanglis@gmail.com> References: <20170528153241.15637-1-fredmanglis@gmail.com> Date: Sun, 04 Jun 2017 14:15:58 +0200 Message-ID: <87efv0ymm9.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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: Muriithi Frederick Muriuki , 26524@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Muriithi Frederick Muriuki writes: > * gnu/packages/python.scm (python-sure, python2-sure): New variables. > --- > gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ > 1 file changed, 29 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 3e2141e7f..556d34d0c 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -14926,3 +14926,32 @@ Supported metrics are: >=20=20 > (define-public python2-radon > (package-with-python2 python-radon)) > + > +(define-public python-sure > + (package > + (name "python-sure") > + (version "1.4.6") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "sure" version)) > + (sha256 > + (base32 > + "1iyqsy2d6radi88g1qf0lziy5b39h5cpb3g5jiqyb4xi46ig3x1z")))) > + (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 writi= ng assertions. > +Sure is heavily inspired by @code{RSpec Expectations} and @code{should.j= s}.") > + (license license:gpl3))) Committed with this diff: diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 70544058a..5adb35510 100644 =2D-- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14944,14 +14944,12 @@ Supported metrics are: ("python-six" ,python-six))) (native-inputs `(("python-nose" ,python-nose))) =2D (home-page =2D "http://github.com/gabrielfalcao/sure") =2D (synopsis =2D "Sure is an automated testing library in python for python") + (home-page "http://github.com/gabrielfalcao/sure") + (synopsis "Automated testing library in python for python") (description =2D "Sure is a python library for python that leverages a DSL for writi= ng assertions. + "Sure is a python library that leverages a DSL for writing assertions. Sure is heavily inspired by @code{RSpec Expectations} and @code{should.js}= .") =2D (license license:gpl3))) + (license license:gpl3+))) =20 Thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlkz+f4ACgkQoqBt8qM6 VPrWCwgAlIi9+Gnu+yzMR/Qu7sMTxtlgj+so1ua2YxwX9Y35Gdnkt8GSDfy5JQH9 3VtXsZLBFKBoECTJ197yvqVZCLDLWs7o72ZX0wT+qb8dz3c5BWAC/dX+hA14E8HE k1h+eRj2evjMFx+RyyBF66XjjfguZMwo7dp7VQVSlP1G8FZB2cCz4WEpkF1IlUBI e+nNqAfW3FI8qrAmDjKQVcAYnmUFozeTKDfaaV9a+unAJ3Bzw4OqG1RY3ovI5BYZ nJzLqHZzqGE3G6UUAc9NfNAgaESFkvQ8khtNp9iiSLPZddjxJ8/9eRuvTSMHoc5g aZkUvbCk6PWWCY4y9O2U+1lR5/M6hw== =nNAP -----END PGP SIGNATURE----- --=-=-=--