awscli: don't pin PyYAML

This commit is contained in:
Robert Schütz 2021-01-24 10:16:52 +01:00
parent fef69cb5b8
commit 0f8ab41b39

View file

@ -35,8 +35,12 @@ in with py.pkgs; buildPythonApplication rec {
sha256 = "sha256-G8HonN02eFcfMRhj9+cporugVsF7nDeHEopuHnbS1Is=";
};
# https://github.com/aws/aws-cli/issues/4837
# https://github.com/aws/aws-cli/pull/5887
postPatch = ''
substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
substituteInPlace setup.py \
--replace "docutils>=0.10,<0.16" "docutils>=0.10" \
--replace "PyYAML>=3.10,<5.4" "PyYAML>=3.10"
'';
# No tests included