3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #180881 from devusb/awscli2-2.7.14

awscli2: 2.7.9 -> 2.7.14
This commit is contained in:
Winter 2022-07-19 22:31:19 -04:00 committed by GitHub
commit 32162fac06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,13 +29,13 @@ let
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
version = "2.7.9"; # N.B: if you change this, check if overrides are still up-to-date
version = "2.7.14"; # 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-6JlBgcHpR2ZfrljS+flxaog/KZQLvPUacJGLMQNsZ5Y=";
sha256 = "sha256-ji/hKoYxM3wag9DXy2e/VsJZVGN5UEebWX/ctOVJ42M=";
};
propagatedBuildInputs = [
@ -101,6 +101,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 bryanasdev000 ];
maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb ];
};
}