From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 19/20] gnu: Add python-requests-2.10.0 Date: Fri, 14 Apr 2017 13:13:19 +0300 Message-ID: <20170414101320.11755-19-fredmanglis@gmail.com> References: <20170414101320.11755-1-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44552) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyyEc-0001KQ-2V for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyyEb-0005py-55 for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:46 -0400 Received: from mail-wr0-x241.google.com ([2a00:1450:400c:c0c::241]:35228) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cyyEa-0005pe-V3 for guix-devel@gnu.org; Fri, 14 Apr 2017 06:13:45 -0400 Received: by mail-wr0-x241.google.com with SMTP id l44so11944036wrc.2 for ; Fri, 14 Apr 2017 03:13:44 -0700 (PDT) In-Reply-To: <20170414101320.11755-1-fredmanglis@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 Cc: pjotr2017@thebird.nl * gnu/packages/python.scm (python-requests-2.10.0): New variable. --- gnu/packages/python.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 96849b5..fe911de 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14446,3 +14446,20 @@ This is also for repeatable fuzzy data in tests - factory boy uses faker for lot (define-public python2-pyyaml-3.11 (package-with-python2 python-pyyaml-3.11)) + +(define-public python-requests-2.10.0 + ;; Required by python-xenon + (package + (inherit python-requests) + (name "python-requests") + (version "2.10.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "requests" version)) + (sha256 + (base32 + "0m2vaasjdhrsf9nk05q0bybqw0w4w4p3p4vaw7730w8mi1bq3wb3")))))) + +(define-public python2-requests-2.10.0 + (package-with-python2 python-requests-2.10.0)) -- 2.10.2