awscli2: 2.13.28 -> 2.13.33

https://github.com/aws/aws-cli/compare/2.13.28...2.13.33
This commit is contained in:
Anthony Roussel 2023-11-06 23:44:18 +01:00
parent ea71f1713f
commit 3c9a9db637
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -20,8 +20,8 @@ let
urllib3 = prev.urllib3.overridePythonAttrs (prev: {
format = "setuptools";
src = prev.src.override {
version = "1.26.16";
hash = "sha256-jxNfZQJ1a95rKpsomJ31++h8mXDOyqaQQe3M5/BYmxQ=";
version = "1.26.18";
hash = "sha256-+OzBu6VmdBNFfFKauVW/jGe0XbeZ0VkGYmFxnjKFgKA=";
};
});
});
@ -30,21 +30,21 @@ let
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
version = "2.13.28"; # N.B: if you change this, check if overrides are still up-to-date
version = "2.13.33"; # N.B: if you change this, check if overrides are still up-to-date
format = "pyproject";
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
rev = "refs/tags/${version}";
hash = "sha256-rl4gBjuCnXfyJMv/2KIeujK0ouR624+AYaVYn4ri1Nk=";
hash = "sha256-5ANfMa7b72z5E1EH9+dJ9avLDBnSEFGqvDOFFzLbZcM=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \
--replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \
--replace 'awscrt>=0.16.4,<=0.16.16' 'awscrt>=0.16.4' \
--replace 'awscrt>=0.16.4,<=0.19.6' 'awscrt>=0.16.4' \
--replace 'docutils>=0.10,<0.20' 'docutils>=0.10' \
--replace 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24'