From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH v2 06/10] gnu: Add python-cachecontrol. Date: Sun, 24 Apr 2016 23:06:20 +1000 Message-ID: <1461503184-8841-7-git-send-email-donttrustben@gmail.com> References: <1461244921-7412-1-git-send-email-donttrustben@gmail.com> <1461503184-8841-1-git-send-email-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33405) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auJkX-00022p-Pe for Guix-devel@gnu.org; Sun, 24 Apr 2016 09:06:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1auJkW-0007De-RQ for Guix-devel@gnu.org; Sun, 24 Apr 2016 09:06:57 -0400 Received: from mail-pf0-x243.google.com ([2607:f8b0:400e:c00::243]:33977) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auJkW-0007DT-LA for Guix-devel@gnu.org; Sun, 24 Apr 2016 09:06:56 -0400 Received: by mail-pf0-x243.google.com with SMTP id 145so6765675pfz.1 for ; Sun, 24 Apr 2016 06:06:56 -0700 (PDT) Received: from localhost.localdomain ([103.25.181.216]) by smtp.googlemail.com with ESMTPSA id a64sm2229285pfa.6.2016.04.24.06.06.53 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 24 Apr 2016 06:06:55 -0700 (PDT) In-Reply-To: <1461503184-8841-1-git-send-email-donttrustben@gmail.com> 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 * gnu/packages/python.scm (python-cachecontrol, python2-cachecontrol): New variables. --- gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 28eebf1..ccd4a28 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8849,6 +8849,37 @@ to support both Python 2 and Python 3 with minimal overhead.") (inherit base) (native-inputs `(("python2-setuptools" ,python2-setuptools)))))) +(define-public python-cachecontrol + (package + (name "python-cachecontrol") + (version "0.11.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "CacheControl" version)) + (sha256 + (base32 + "15bn8xll6z15h0zqhfjy1n8dn8p0fcb4m0rhnfanq63z7r2wpprp")))) + (build-system python-build-system) + (propagated-inputs + `(("python-requests" ,python-requests) + ("python-lockfile" ,python-lockfile))) + (home-page "https://github.com/ionrock/cachecontrol") + (synopsis "httplib2 caching for requests") + (description "CacheControl is a port of the caching algorithms in httplib2 +for use with requests session object. It was written because httplib2's +better support for caching is often mitigated by its lack of threadsafety. +The same is true of requests in terms of caching.") + (license asl2.0) + (properties `((python2-variant . ,(delay python2-cachecontrol)))))) + +(define-public python2-cachecontrol + (let ((base (package-with-python2 + (strip-python2-variant python-cachecontrol)))) + (package + (inherit base) + (native-inputs `(("python2-setuptools" ,python2-setuptools)))))) + (define-public python-cysignals (package (name "python-cysignals") -- 2.5.0