From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Re: [PATCH 1/4] gnu: Add python-pytest-3.0.7 Date: Sun, 26 Mar 2017 15:10:19 +0000 Message-ID: <20170326151019.GA13943@monza> References: <20170326092335.3912-1-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]:34188) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs9qH-0006Yf-6f for guix-devel@gnu.org; Sun, 26 Mar 2017 11:12:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs9qC-0008Nl-8W for guix-devel@gnu.org; Sun, 26 Mar 2017 11:12:29 -0400 Received: from mail.thebird.nl ([95.154.246.10]:34509) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cs9qC-0008Ja-2f for guix-devel@gnu.org; Sun, 26 Mar 2017 11:12:24 -0400 Content-Disposition: inline In-Reply-To: <20170326092335.3912-1-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 Is there a reason not to just update this package? Otherwise LGTM On Sun, Mar 26, 2017 at 12:23:32PM +0300, Muriithi Frederick Muriuki wrote: > * gnu/packages/python.scm (python-pytest-3.0.7): New variable. > --- > gnu/packages/python.scm | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 7aae8fc..52be497 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -1845,6 +1845,24 @@ and many external plugins.") > line))) > #t))))))) > > +;; This package is used by Sphinx version 1.5.2 and up > +(define-public python-pytest-3.0.7 > + (package > + (inherit python-pytest-2.9.2) > + (name "python-pytest") > + (version "3.0.7") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "pytest" version)) > + (sha256 > + (base32 > + "1asc4b2nd2a4f0g3r12y97rslq5wliji7b73wwkvdrm5s7mrc1mp")))) > + (native-inputs > + `(("python-nose" ,python-nose) > + ("python-mock" ,python-mock) > + ("python-hypothesis" ,python-hypothesis))))) > + > (define-public python-pytest-cov > (package > (name "python-pytest-cov") > -- > 2.10.2 >