From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43210) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iIxxU-00048s-B0 for guix-patches@gnu.org; Fri, 11 Oct 2019 12:40:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iIxxT-0001GD-3S for guix-patches@gnu.org; Fri, 11 Oct 2019 12:40:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51401) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iIxxT-0001G7-0N for guix-patches@gnu.org; Fri, 11 Oct 2019 12:40:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iIxxS-0002Lv-T3 for guix-patches@gnu.org; Fri, 11 Oct 2019 12:40:02 -0400 Subject: [bug#37704] [PATCH 4/9] gnu: Add python-memcached. References: <20191011163447.utqgomsalw7r6nul@rafflesia> In-Reply-To: <20191011163447.utqgomsalw7r6nul@rafflesia> Resent-Message-ID: Date: Fri, 11 Oct 2019 18:39:36 +0200 From: Tanguy Le Carrour Message-ID: <20191011163936.ghvn67ip3dqbyk2g@rafflesia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="4plzhnboo6wzy2os" Content-Disposition: inline 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: 37704@debbugs.gnu.org --4plzhnboo6wzy2os Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --4plzhnboo6wzy2os Content-Type: text/plain; charset=us-ascii Content-Disposition: inline >From fc5c71d75ed13825a7bb80ee304fc02a6c32cebc Mon Sep 17 00:00:00 2001 From: Tanguy Le Carrour Date: Wed, 9 Oct 2019 09:51:17 +0200 Subject: [PATCH 4/9] gnu: Add python-memcached. --- gnu/packages/python-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b82631d8e2..d02f7492a2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10554,6 +10554,25 @@ docstring and colored output.") (description "Tool to Detect Surrounding Shell") (license license:isc))) +(define-public python-memcached + (package + (name "python-memcached") + (version "1.59") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-memcached" version)) + (sha256 + (base32 + "0kvyapavbirk2x3n1jx4yb9nyigrj1s3x15nm3qhpvhkpqvqdqm2")))) + (build-system python-build-system) + (propagated-inputs `(("python-six" ,python-six))) + (home-page + "https://github.com/linsomniac/python-memcached") + (synopsis "Pure python memcached client") + (description "Pure python memcached client") + (license license:psfl))) + (define-public python-lazy-object-proxy (package (name "python-lazy-object-proxy") -- 2.23.0 --4plzhnboo6wzy2os--