awscli: 1.22.88 -> 1.25.31

This commit is contained in:
Martin Weinelt
2022-07-21 22:35:24 +02:00
parent 9b10680456
commit b1c7aeb43b
+3 -3
View File
@@ -35,17 +35,17 @@ let
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli";
version = "1.22.88"; # N.B: if you change this, change botocore and boto3 to a matching version too
version = "1.25.31"; # N.B: if you change this, change botocore and boto3 to a matching version too
src = fetchPypi {
inherit pname version;
hash = "sha256-fwbejwcT4piC8Zr6+ubxMd+TuF9O4icOentI2GlhYrc=";
hash = "sha256-z5FA8Xmv8Abqh/ckYB5Bcgwrnd0FlHJQJi562tLZ3hE=";
};
# https://github.com/aws/aws-cli/issues/4837
postPatch = ''
substituteInPlace setup.py \
--replace "docutils>=0.10,<0.16" "docutils>=0.10" \
--replace "docutils>=0.10,<0.17" "docutils>=0.10" \
--replace "rsa>=3.1.2,<4.8" "rsa<5,>=3.1.2"
'';