From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH 7/9] gnu: python-pytest: Update to 3.0.5. Date: Sat, 4 Feb 2017 16:35:04 +0000 Message-ID: <20170204163506.16758-8-contact.ng0@cryptolab.net> References: <20170204163506.16758-1-contact.ng0@cryptolab.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60018) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ca3JB-0005Uh-0Q for guix-devel@gnu.org; Sat, 04 Feb 2017 11:35:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ca3J7-0007vr-QS for guix-devel@gnu.org; Sat, 04 Feb 2017 11:35:28 -0500 Received: from aibo.runbox.com ([91.220.196.211]:49800) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ca3J7-0007ut-J1 for guix-devel@gnu.org; Sat, 04 Feb 2017 11:35:25 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1ca3J6-0002fJ-Bt for guix-devel@gnu.org; Sat, 04 Feb 2017 17:35:24 +0100 In-Reply-To: <20170204163506.16758-1-contact.ng0@cryptolab.net> 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: ng0 From: ng0 * gnu/packages/python.scm (python-pytest): Update to 3.0.5. [source]: Use "pypi-uri". --- gnu/packages/python.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 7bdd371b5..a4179a67a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1738,16 +1738,14 @@ code introspection, and logging.") (define-public python-pytest (package (name "python-pytest") - (version "2.7.3") + (version "3.0.5") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/p/pytest/pytest-" - version ".tar.gz")) + (uri (pypi-uri "pytest" version)) (sha256 (base32 - "1z4yi986f9n0p8qmzmn21m21m8j1x78hk3505f89baqm6pdw7afm")) + "1z9pj39w0r2gw5hsqndlmsqa80kgbrann5kfma8ww8zhaslkl02a")) (modules '((guix build utils))) (snippet ;; One of the tests involves the /usr directory, so it fails. @@ -1758,6 +1756,7 @@ code introspection, and logging.") (propagated-inputs `(("python-py" ,python-py))) (native-inputs + ;; If we add python-hypothesis here, it creates an circular depedency. `(("python-nose" ,python-nose) ("python-mock" ,python-mock))) (home-page "http://pytest.org") -- 2.11.0