From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dcGz1-0000KH-Eu for guix-patches@gnu.org; Mon, 31 Jul 2017 16:08:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcGyz-0001iM-L9 for guix-patches@gnu.org; Mon, 31 Jul 2017 16:08:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33066) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dcGyz-0001iI-HP for guix-patches@gnu.org; Mon, 31 Jul 2017 16:08:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dcGyz-0004pA-C9 for guix-patches@gnu.org; Mon, 31 Jul 2017 16:08:05 -0400 Subject: [bug#27888] [PATCH 07/18] gnu: python-pytest: Update to 3.1.3. Resent-Message-ID: From: Marius Bakke Date: Mon, 31 Jul 2017 22:07:24 +0200 Message-Id: <20170731200735.28019-7-mbakke@fastmail.com> In-Reply-To: <20170731200735.28019-1-mbakke@fastmail.com> References: <20170731200735.28019-1-mbakke@fastmail.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: 27888@debbugs.gnu.org * gnu/packages/python.scm (python-pytest-bootstrap): Update to 3.1.3. [native-inputs]: Add PYTHON-SETUPTOOLS-SCM. (python-pytest)[native-inputs]: Inherit. --- gnu/packages/python.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index c40f56978..955bd670a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1889,17 +1889,19 @@ code introspection, and logging.") (define python-pytest-bootstrap (package (name "python-pytest-bootstrap") - (version "3.0.7") + (version "3.1.3") (source (origin (method url-fetch) (uri (pypi-uri "pytest" version)) (sha256 (base32 - "1asc4b2nd2a4f0g3r12y97rslq5wliji7b73wwkvdrm5s7mrc1mp")))) + "01k2abl6x60ac7wx5k9rw602n1b5r39xix6sjly5c974ywr1hph9")))) (build-system python-build-system) (arguments `(#:tests? #f)) + (native-inputs + `(("python-setuptools-scm" ,python-setuptools-scm))) (propagated-inputs `(("python-py" ,python-py))) (home-page "http://pytest.org") @@ -1937,7 +1939,8 @@ and many external plugins.") ("bash" ,bash) ("python-hypothesis" ,python-hypothesis) ("python-nose" ,python-nose) - ("python-mock" ,python-mock))) + ("python-mock" ,python-mock) + ,@(package-native-inputs python-pytest-bootstrap))) (properties `((python2-variant . ,(delay python2-pytest-bootstrap)))))) (define-public python2-pytest -- 2.13.3