awscli2: 2.27.61 -> 2.28.1

This commit is contained in:
R. Ryantm 2025-08-01 19:24:24 +00:00 committed by Anthony ROUSSEL
parent 4edcaa1606
commit de74240d03

View File

@ -65,14 +65,14 @@ let
in
py.pkgs.buildPythonApplication rec {
pname = "awscli2";
version = "2.27.61"; # N.B: if you change this, check if overrides are still up-to-date
version = "2.28.1"; # 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-2lcPqNrGAHvPPVZIQaDbI54sQQ7OsOiMxUx6qg6WeNU=";
hash = "sha256-TpyjYnLTBPU83g6/h+BrX4hd4dUbZUvDyJ6m/3v38+A=";
};
postPatch = ''
@ -160,6 +160,12 @@ py.pkgs.buildPythonApplication rec {
"tests/functional"
];
disabledTests = [
# Requires networking (socket binding not possible in sandbox)
"test_is_socket"
"test_is_special_file_warning"
];
pythonImportsCheck = [
"awscli"
];