From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 1/4] gnu: Add python-pytest-3.0.7 Date: Sun, 26 Mar 2017 12:23:32 +0300 Message-ID: <20170326092335.3912-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cs4O5-0001UF-20 for guix-devel@gnu.org; Sun, 26 Mar 2017 05:23:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cs4O1-0007YF-T4 for guix-devel@gnu.org; Sun, 26 Mar 2017 05:23:01 -0400 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:34246) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cs4O1-0007Wd-Lu for guix-devel@gnu.org; Sun, 26 Mar 2017 05:22:57 -0400 Received: by mail-wm0-x241.google.com with SMTP id u132so5580409wmg.1 for ; Sun, 26 Mar 2017 02:22:57 -0700 (PDT) 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: guix-devel@gnu.org Cc: pjotr2017@thebird.nl * 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