From 7a76f5a9f6c2c447a71546d635e8ffae0052d17e Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Thu, 19 Mar 2026 22:10:34 -0500 Subject: [PATCH 1/2] python3Packages.awscrt: 0.31.1 -> 0.31.3 --- pkgs/development/python-modules/awscrt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/awscrt/default.nix b/pkgs/development/python-modules/awscrt/default.nix index 1b904a24ea14..5f84895c5032 100644 --- a/pkgs/development/python-modules/awscrt/default.nix +++ b/pkgs/development/python-modules/awscrt/default.nix @@ -10,12 +10,12 @@ buildPythonPackage (finalAttrs: { pname = "awscrt"; - version = "0.31.1"; + version = "0.31.3"; pyproject = true; src = fetchPypi { inherit (finalAttrs) pname version; - hash = "sha256-q7ZHaNJb9WPajiFl1Hekkcuhi8IsTsjbesva6U5Z68Q="; + hash = "sha256-FswDgO7wc6Ljfv8BqY8/IQjq1tu0qRnUD2VtsNitS3E="; }; build-system = [ setuptools ]; From 208fa7a5d3449a4a14729aaf142a44ec59265f44 Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Thu, 19 Mar 2026 22:10:37 -0500 Subject: [PATCH 2/2] awscli2: 2.33.2 -> 2.34.24 --- pkgs/by-name/aw/awscli2/package.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/aw/awscli2/package.nix b/pkgs/by-name/aw/awscli2/package.nix index 027114392ff2..1d82e222f293 100644 --- a/pkgs/by-name/aw/awscli2/package.nix +++ b/pkgs/by-name/aw/awscli2/package.nix @@ -54,28 +54,29 @@ let in py.pkgs.buildPythonApplication rec { pname = "awscli2"; - version = "2.33.2"; # N.B: if you change this, check if overrides are still up-to-date + version = "2.34.24"; # N.B: if you change this, check if overrides are still up-to-date pyproject = true; src = fetchFromGitHub { owner = "aws"; repo = "aws-cli"; tag = version; - hash = "sha256-dAtcYDdrZASrwBjQfnZ4DUR4F5WhY59/UX92QcILavs="; + hash = "sha256-PDoztQYKfH6FjdSyMQGsT8No3LB56naQ/AxTPN/dslQ="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail 'flit_core>=3.7.1,<3.9.1' 'flit_core>=3.7.1' \ + --replace-fail 'flit_core>=3.7.1,<3.12.1' 'flit_core>=3.7.1' \ --replace-fail 'awscrt==' 'awscrt>=' \ --replace-fail 'distro>=1.5.0,<1.9.0' 'distro>=1.5.0' \ --replace-fail 'docutils>=0.10,<0.20' 'docutils>=0.10' \ --replace-fail 'prompt-toolkit>=3.0.24,<3.0.52' 'prompt-toolkit>=3.0.24' \ - --replace-fail 'ruamel.yaml>=0.15.0,<=0.17.21' 'ruamel.yaml>=0.15.0' \ - --replace-fail 'ruamel.yaml.clib>=0.2.0,<=0.2.12' 'ruamel.yaml.clib>=0.2.0' + --replace-fail 'ruamel_yaml>=0.15.0,<=0.19.1' 'ruamel_yaml>=0.15.0' \ + --replace-fail 'ruamel_yaml_clib>=0.2.0,<=0.2.15' 'ruamel_yaml_clib>=0.2.0' \ + --replace-fail 'wcwidth<0.3.0' 'wcwidth>=0.3.0' substituteInPlace requirements-base.txt \ - --replace-fail "wheel==0.43.0" "wheel>=0.43.0" + --replace-fail "wheel==0.46.3" "wheel>=0.46.3" # Upstream needs pip to build and install dependencies and validates this # with a configure script, but we don't as we provide all of the packages