From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 4/4] gnu: awscli: Update to 1.11.5. Date: Sat, 15 Oct 2016 21:55:01 -0400 Message-ID: References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39961) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bvafb-0002bh-Bh for guix-devel@gnu.org; Sat, 15 Oct 2016 21:55:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bvafY-0000wo-Hm for guix-devel@gnu.org; Sat, 15 Oct 2016 21:55:23 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:59513) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bvafY-0000wG-Dg for guix-devel@gnu.org; Sat, 15 Oct 2016 21:55:20 -0400 Received: from localhost.localdomain (74-94-60-115-philadelphia.hfc.comcastbusiness.net [74.94.60.115]) by mail.messagingengine.com (Postfix) with ESMTPA id 7C818CC0C0 for ; Sat, 15 Oct 2016 21:55:19 -0400 (EDT) In-Reply-To: In-Reply-To: References: 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 (awscli): Update to 1.11.5. [source]: Use pypi-uri. [inputs]: Add python-s3transfer. --- gnu/packages/python.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 900e6ae..3694309 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7909,16 +7909,14 @@ interface to the Amazon Web Services (AWS) API.") (define-public awscli (package (name "awscli") - (version "1.9.17") + (version "1.11.5") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/a/awscli/awscli-" - version ".tar.gz")) + (uri (pypi-uri name version)) (sha256 (base32 - "1nj7jqvlpq57hfhby1njsbf8303gapa3njc4dramr6p3ffzvfi2i")))) + "0lclasm0wnayd3b8zl9l91i32nbgrhh0ncf9lksss4cv0myfwmfg")))) (build-system python-build-system) (inputs `(("python-colorama" ,python-colorama) @@ -7930,7 +7928,8 @@ interface to the Amazon Web Services (AWS) API.") ("python-sphinx" ,python-sphinx) ("python-tox" ,python-tox) ("python-wheel" ,python-wheel) - ("python-botocore" ,python-botocore))) + ("python-botocore" ,python-botocore) + ("python-s3transfer" ,python-s3transfer))) (home-page "http://aws.amazon.com/cli/") (synopsis "Command line client for AWS") (description "AWS CLI provides a unified command line interface to the -- 2.10.1