diff --git a/pkgs/by-name/aw/aws-sam-cli/package.nix b/pkgs/by-name/aw/aws-sam-cli/package.nix index a51ca8ee3066..bddeaeb6d778 100644 --- a/pkgs/by-name/aw/aws-sam-cli/package.nix +++ b/pkgs/by-name/aw/aws-sam-cli/package.nix @@ -11,14 +11,14 @@ python3.pkgs.buildPythonApplication rec { pname = "aws-sam-cli"; - version = "1.160.0"; + version = "1.163.0"; pyproject = true; src = fetchFromGitHub { owner = "aws"; repo = "aws-sam-cli"; tag = "v${version}"; - hash = "sha256-IBxnBIgTSpPUNb/4yx3OqA7WFzudzRKgkKCFsJeyx08="; + hash = "sha256-ydyuQHdLWet5+HkPCmHiKqTFY8+nVOXTlPFfOckzOXE="; }; build-system = with python3.pkgs; [ setuptools ]; @@ -135,6 +135,8 @@ python3.pkgs.buildPythonApplication rec { # Tests are failing "tests/unit/commands/local/lib/" "tests/unit/local/lambda_service/test_local_lambda_http_service.py" + "tests/unit/local/apigw/test_local_apigw_service.py" + "tests/unit/local/apigw/test_event_constructor.py" ]; disabledTests = [ @@ -145,6 +147,8 @@ python3.pkgs.buildPythonApplication rec { "test_import_should_succeed_for_a_defined_hidden_package_540_pkg_resources_py2_warn" "test_updates_imageuri_when_pointing_to_local_archive" "test_subcommand_help_0_invoke" + "TestCli" + "TestImportModuleProxy" ]; pythonImportsCheck = [ "samcli" ];