awscli: update to 1.6.10 and adopt it

[Bjørn: upper-case first letter in description]
This commit is contained in:
muflax 2014-12-26 05:12:24 +00:00 committed by Bjørn Forsman
parent 24349b8e99
commit 745e3e64a9

@ -2,15 +2,15 @@
pythonPackages.buildPythonPackage rec {
name = "awscli-${version}";
version = "1.5.5";
version = "1.6.10";
namePrefix = "";
src = fetchurl {
url = "https://github.com/aws/aws-cli/archive/${version}.tar.gz";
sha256 = "1xqaav4g07jzv8i4hkf52dimgmc0zv0fj9rbvz5kiln8470qzifw";
sha256 = "1g25yqxpcjrwjiibwgjrlqdyx6hpdlcb6zr2s05w592gr9gpbwpm";
};
propagatedBuildInputs = [
propagatedBuildInputs = [
pythonPackages.botocore
pythonPackages.bcdoc
pythonPackages.six
@ -19,4 +19,11 @@ pythonPackages.buildPythonPackage rec {
pythonPackages.rsa
pythonPackages.pyasn1
];
meta = {
homepage = https://aws.amazon.com/cli/;
description = "Unified tool to manage your AWS services";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ muflax ];
};
}