From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33967) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dLWsP-0001rU-Lf for guix-patches@gnu.org; Thu, 15 Jun 2017 11:40:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dLWsM-0005Ve-Jc for guix-patches@gnu.org; Thu, 15 Jun 2017 11:40:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47111) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dLWsM-0005VQ-Fv for guix-patches@gnu.org; Thu, 15 Jun 2017 11:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dLWsM-0000is-5x for guix-patches@gnu.org; Thu, 15 Jun 2017 11:40:02 -0400 Subject: [bug#27380] [PATCH 2/2] gnu: python-mock: Update to 2.0.0 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33423) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dLWrK-0001DR-Aj for guix-patches@gnu.org; Thu, 15 Jun 2017 11:38:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dLWrJ-0004i8-E2 for guix-patches@gnu.org; Thu, 15 Jun 2017 11:38:58 -0400 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:35441) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dLWrJ-0004hr-87 for guix-patches@gnu.org; Thu, 15 Jun 2017 11:38:57 -0400 Received: by mail-wm0-x241.google.com with SMTP id d64so520371wmf.2 for ; Thu, 15 Jun 2017 08:38:57 -0700 (PDT) From: Muriithi Frederick Muriuki Date: Thu, 15 Jun 2017 18:39:06 +0300 Message-Id: <20170615153906.26709-3-fredmanglis@gmail.com> In-Reply-To: <20170615153906.26709-1-fredmanglis@gmail.com> References: <20170615153906.26709-1-fredmanglis@gmail.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: 27380@debbugs.gnu.org * gnu/packages/python.scm (python-mock): Update to 2.0.0 [source]: Update hash. [native-inputs]: Add python-pbr-minimal as a dependency. --- gnu/packages/python.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1427d92ab..8e18173a0 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -900,14 +900,16 @@ API for locking files.") (define-public python-mock (package (name "python-mock") - (version "1.0.1") + (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "mock" version)) (sha256 (base32 - "0kzlsbki6q0awf89rc287f3aj8x431lrajf160a70z0ikhnxsfdq")))) + "1flbpksir5sqrvq2z0dp8sl4bzbadg21sj4d42w3klpdfvgvcn5i")))) + (native-inputs + `(("python-pbr-minimal" ,python-pbr-minimal))) (build-system python-build-system) (arguments '(#:test-target "check")) (home-page "https://github.com/testing-cabal/mock") -- 2.13.1