From f2798e4b65f9c54e97702ee33177cb14a62ce218 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 6 Apr 2025 17:16:15 -0400 Subject: [PATCH] awscli2: relax ruamel.yaml.clib dependency It was bumped in c861a11e7174492dbf29db75348d0d3777d6fb62 beyond the upstream cap. It should be ok to remove the cap since the dependency is applicable for python 3.10 and earlier, as per the comment in the patched file: https://github.com/aws/aws-cli/blob/c24bf195ca8cdab9ed59df0d1f8b47185afaffa0/pyproject.toml#L37 Signed-off-by: Ihar Hrachyshka --- pkgs/by-name/aw/awscli2/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/aw/awscli2/package.nix b/pkgs/by-name/aw/awscli2/package.nix index 58d482d5c8d1..2d2eaa752c06 100644 --- a/pkgs/by-name/aw/awscli2/package.nix +++ b/pkgs/by-name/aw/awscli2/package.nix @@ -82,6 +82,7 @@ py.pkgs.buildPythonApplication rec { --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.39' 'prompt-toolkit>=3.0.24' \ + --replace-fail 'ruamel.yaml.clib>=0.2.0,<=0.2.8' 'ruamel.yaml.clib>=0.2.0' \ --replace-fail 'zipp<3.21.0' 'zipp>=3.21.0' substituteInPlace requirements-base.txt \