From 43e661da405cb916977c4a91bd6567ba6f1bb641 Mon Sep 17 00:00:00 2001 From: "Bryan A. S" Date: Thu, 26 May 2022 14:37:20 -0300 Subject: [PATCH] awscli2: 2.5.6 -> 2.7.3 - upgrade package - test overrides - add myself as maintainer --- pkgs/tools/admin/awscli2/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/awscli2/default.nix b/pkgs/tools/admin/awscli2/default.nix index 061981672d95..ca74704309d3 100644 --- a/pkgs/tools/admin/awscli2/default.nix +++ b/pkgs/tools/admin/awscli2/default.nix @@ -29,13 +29,13 @@ let in with py.pkgs; buildPythonApplication rec { pname = "awscli2"; - version = "2.5.6"; # N.B: if you change this, check if overrides are still up-to-date + version = "2.7.3"; # N.B: if you change this, check if overrides are still up-to-date src = fetchFromGitHub { owner = "aws"; repo = "aws-cli"; rev = version; - sha256 = "sha256-NANdm2RK4U5sXPuGbC8KUGXsbYl/WwAoUep4JxJA5lI="; + sha256 = "sha256-CM20zBuby1X+XOiphDDtWHUB08Mw7IYf0aZUWIvEAqI="; }; propagatedBuildInputs = [ @@ -100,6 +100,6 @@ with py.pkgs; buildPythonApplication rec { changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst"; description = "Unified tool to manage your AWS services"; license = licenses.asl20; - maintainers = with maintainers; [ bhipple davegallant ]; + maintainers = with maintainers; [ bhipple davegallant bryanasdev000 ]; }; }