awscli2: 2.27.61 -> 2.28.1 (#430200)

This commit is contained in:
Weijia Wang
2025-08-05 12:04:46 +02:00
committed by GitHub

View File

@@ -65,14 +65,14 @@ let
in in
py.pkgs.buildPythonApplication rec { py.pkgs.buildPythonApplication rec {
pname = "awscli2"; 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; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aws"; owner = "aws";
repo = "aws-cli"; repo = "aws-cli";
tag = version; tag = version;
hash = "sha256-2lcPqNrGAHvPPVZIQaDbI54sQQ7OsOiMxUx6qg6WeNU="; hash = "sha256-TpyjYnLTBPU83g6/h+BrX4hd4dUbZUvDyJ6m/3v38+A=";
}; };
postPatch = '' postPatch = ''
@@ -160,6 +160,12 @@ py.pkgs.buildPythonApplication rec {
"tests/functional" "tests/functional"
]; ];
disabledTests = [
# Requires networking (socket binding not possible in sandbox)
"test_is_socket"
"test_is_special_file_warning"
];
pythonImportsCheck = [ pythonImportsCheck = [
"awscli" "awscli"
]; ];