From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60280) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jFcIO-0005bU-SZ for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jFcIN-0006Un-Um for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40073) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jFcIN-0006Ud-RL for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jFcIN-0001MD-PB for guix-patches@gnu.org; Sat, 21 Mar 2020 07:28:03 -0400 Subject: [bug#39777] [PATCH V5 13/14] gnu: python-cachy: Update to 0.3.0. Resent-Message-ID: From: Tanguy Le Carrour Date: Sat, 21 Mar 2020 12:26:28 +0100 Message-Id: <20200321112629.20988-13-tanguy@bioneland.org> In-Reply-To: <20200321112629.20988-1-tanguy@bioneland.org> References: <20200321112629.20988-1-tanguy@bioneland.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39777@debbugs.gnu.org Cc: Tanguy Le Carrour * gnu/packages/python-xyz.scm (python-cachy): Update to 0.3.0. [arguments]: Run checks using pifpaf. [native-inputs]: Add memcached and python-pifpaf. --- gnu/packages/python-xyz.scm | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index baaefe8552..f036b66aba 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11202,18 +11202,25 @@ strings require only one extra byte in addition to the strings themselves.") (define-public python-cachy (package (name "python-cachy") - (version "0.2.0") + (version "0.3.0") (source (origin (method url-fetch) (uri (pypi-uri "cachy" version)) (sha256 (base32 - "0v6mjyhgx6j7ya20bk69cr3gdzdkdf6psay0h090rscclgji65dp")))) + "1cb9naly8ampzlky7h74n5wj628l7jkpsh0c0jz0namlrvs82r8q")))) (build-system python-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ (invoke "pifpaf" "run" "memcached" "--port" "11211" "--" "pytest")))))) (native-inputs - `(("python-fakeredis" ,python-fakeredis) + `(("memcached" ,memcached) + ("python-fakeredis" ,python-fakeredis) ("python-flexmock" ,python-flexmock) + ("python-pifpaf" ,python-pifpaf) ("python-pytest" ,python-pytest))) (propagated-inputs `(("python-memcached" ,python-memcached) -- 2.25.2