Merge pull request #270837 from anthonyroussel/updates/awscli_2_14

awscli2: 2.13.38 -> 2.14.2

authored by

Mario Rodas and committed by
GitHub
1382337b c46b67ca

+9 -15
+2 -8
pkgs/development/python-modules/awscrt/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "awscrt"; 15 - version = "0.19.17"; 15 + version = "0.19.18"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-v3CANF5cfUG31AiqAFpRmnLeOfGm7I8H+VIUTo6qVJI="; 22 + hash = "sha256-NQtu/Y6+4ILqPz5SxZo8PsWUza8B24tIU9zrn+yQyJ0="; 23 23 }; 24 24 25 25 buildInputs = lib.optionals stdenv.isDarwin [ 26 26 CoreFoundation 27 27 Security 28 - ]; 29 - 30 - # Required to suppress -Werror 31 - # https://github.com/NixOS/nixpkgs/issues/39687 32 - hardeningDisable = lib.optionals stdenv.cc.isClang [ 33 - "strictoverflow" 34 28 ]; 35 29 36 30 # gcc <10 is not supported, LLVM on darwin is just fine
+3 -3
pkgs/development/python-modules/types-awscrt/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "types-awscrt"; 10 - version = "0.19.13"; 11 - format = "pyproject"; 10 + version = "0.19.18"; 11 + pyproject = true; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 pname = "types_awscrt"; 17 17 inherit version; 18 - hash = "sha256-N0erJxk0FN47IClSt0YiSYH58j9ysQFscSShN7rAD3s="; 18 + hash = "sha256-T1pZyHwFgraev5lNYU4Pt2zC0KXsPzLk0dscCRhnzdM="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+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.38"; # N.B: if you change this, check if overrides are still up-to-date 40 - format = "pyproject"; 39 + version = "2.14.2"; # N.B: if you change this, check if overrides are still up-to-date 40 + pyproject = true; 41 41 42 42 src = fetchFromGitHub { 43 43 owner = "aws"; 44 44 repo = "aws-cli"; 45 45 rev = "refs/tags/${version}"; 46 - hash = "sha256-BsdvmF2ZoiO5uTkrd1G0cgP3/nAPR+nDMO2Se4Tt990="; 46 + hash = "sha256-ECP22D4lQzJ/13/oXkOgn97EhRRuXv4vW0FtlwugrNs="; 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.12' 'awscrt>=0.16.4' \ 53 + --replace 'awscrt==0.19.18' 'awscrt>=0.19' \ 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