awscli2: 2.15.38 -> 2.15.43

This commit is contained in:
Danielle Lancashire 2024-05-01 20:07:53 +00:00
parent 65220e7aa6
commit 7332d037a6
No known key found for this signature in database
GPG Key ID: 8D65584EF3DDF91B

View File

@ -59,14 +59,14 @@ let
in in
with py.pkgs; buildPythonApplication rec { with py.pkgs; buildPythonApplication rec {
pname = "awscli2"; pname = "awscli2";
version = "2.15.38"; # N.B: if you change this, check if overrides are still up-to-date version = "2.15.43"; # N.B: if you change this, check if overrides are still up-to-date
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aws"; owner = "aws";
repo = "aws-cli"; repo = "aws-cli";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-ddZqexGrO2m8iUE9RDkks0ohm27dpitbsj+20aWUrJw="; hash = "sha256-L+1+4QXDya8wwjexPB0fwx6/nRDPDrMYaaYeRm2SEU8=";
}; };
postPatch = '' postPatch = ''
@ -78,7 +78,7 @@ with py.pkgs; buildPythonApplication rec {
--replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' --replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24'
substituteInPlace requirements-base.txt \ substituteInPlace requirements-base.txt \
--replace-fail "wheel==0.38.4" "wheel>=0.38.4" --replace-fail "wheel==0.43.0" "wheel>=0.43.0"
# Upstream needs pip to build and install dependencies and validates this # Upstream needs pip to build and install dependencies and validates this
# with a configure script, but we don't as we provide all of the packages # with a configure script, but we don't as we provide all of the packages