diff --git a/pkgs/by-name/fe/fetchtastic/package.nix b/pkgs/by-name/fe/fetchtastic/package.nix index b9bbc9d83576..6b0c3f44be70 100644 --- a/pkgs/by-name/fe/fetchtastic/package.nix +++ b/pkgs/by-name/fe/fetchtastic/package.nix @@ -1,5 +1,6 @@ { lib, + stdenv, fetchFromGitHub, python3, }: @@ -38,6 +39,12 @@ python3.pkgs.buildPythonApplication (finalAttrs: { pythonImportsCheck = [ "fetchtastic" ]; + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + "test_download_firmware_success" + "test_get_target_path_for_release" + "test_platform_functions" + ]; + meta = { description = "Utility for downloading and managing the latest Meshtastic firmware releases"; homepage = "https://github.com/jeremiah-k/fetchtastic";