Merge pull request #269947 from anthonyroussel/updates/awscli2-2_13_38

awscli2: 2.13.33 -> 2.13.38

authored by Mario Rodas and committed by GitHub 343f9a8f 6a70cde5

+4 -4
+4 -4
pkgs/tools/admin/awscli2/default.nix
··· 36 36 in 37 37 with py.pkgs; buildPythonApplication rec { 38 38 pname = "awscli2"; 39 - version = "2.13.33"; # N.B: if you change this, check if overrides are still up-to-date 39 + version = "2.13.38"; # N.B: if you change this, check if overrides are still up-to-date 40 40 format = "pyproject"; 41 41 42 42 src = fetchFromGitHub { 43 43 owner = "aws"; 44 44 repo = "aws-cli"; 45 45 rev = "refs/tags/${version}"; 46 - hash = "sha256-5ANfMa7b72z5E1EH9+dJ9avLDBnSEFGqvDOFFzLbZcM="; 46 + hash = "sha256-BsdvmF2ZoiO5uTkrd1G0cgP3/nAPR+nDMO2Se4Tt990="; 47 47 }; 48 48 49 49 postPatch = '' 50 50 substituteInPlace pyproject.toml \ 51 51 --replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \ 52 52 --replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \ 53 - --replace 'awscrt>=0.16.4,<=0.19.6' 'awscrt>=0.16.4' \ 53 + --replace 'awscrt>=0.16.4,<=0.19.12' 'awscrt>=0.16.4' \ 54 54 --replace 'docutils>=0.10,<0.20' 'docutils>=0.10' \ 55 55 --replace 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' 56 56 ··· 138 138 139 139 meta = with lib; { 140 140 description = "Unified tool to manage your AWS services"; 141 - homepage = "https://docs.aws.amazon.com/cli/latest/userguide/"; 141 + homepage = "https://aws.amazon.com/cli/"; 142 142 changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst"; 143 143 license = licenses.asl20; 144 144 maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb anthonyroussel ];