lol

awscli2: relax docutils and prompt-toolkit constraint and pin urllib3 to v1

authored by

natsukium and committed by
Martin Weinelt
b6bd6774 7c806bff

+10 -1
+10 -1
pkgs/tools/admin/awscli2/default.nix
··· 17 17 hash = "sha256-i3zml6LyEnUqNcGsQURx3BbEJMlXO+SSa1b/P10jt68="; 18 18 }; 19 19 }); 20 + urllib3 = prev.urllib3.overridePythonAttrs (prev: { 21 + format = "setuptools"; 22 + src = prev.src.override { 23 + version = "1.26.16"; 24 + hash = "sha256-jxNfZQJ1a95rKpsomJ31++h8mXDOyqaQQe3M5/BYmxQ="; 25 + }; 26 + }); 20 27 }); 21 28 }; 22 29 ··· 37 44 substituteInPlace pyproject.toml \ 38 45 --replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \ 39 46 --replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \ 40 - --replace 'awscrt>=0.16.4,<=0.16.16' 'awscrt>=0.16.4' 47 + --replace 'awscrt>=0.16.4,<=0.16.16' 'awscrt>=0.16.4' \ 48 + --replace 'docutils>=0.10,<0.20' 'docutils>=0.10' \ 49 + --replace 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' 41 50 42 51 substituteInPlace requirements-base.txt \ 43 52 --replace "wheel==0.38.4" "wheel>=0.38.4" \