From 294f8c690c0dfed08cfafe4e4d98475a2d7bb767 Mon Sep 17 00:00:00 2001 From: David Stritzl <437018+davidstritzl@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:30:12 +0100 Subject: [PATCH] platformio-core: add missing dependency on aarch64-darwin The chardet package was added as a dependency on aarch64-darwin platforms upstream: https://github.com/platformio/platformio-core/commit/9170eee --- pkgs/development/embedded/platformio/core.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/embedded/platformio/core.nix b/pkgs/development/embedded/platformio/core.nix index aa4e8e9600f6..d2d4418f13b9 100644 --- a/pkgs/development/embedded/platformio/core.nix +++ b/pkgs/development/embedded/platformio/core.nix @@ -72,7 +72,8 @@ with python3Packages; buildPythonApplication rec { uvicorn wsproto zeroconf - + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ + chardet ]; preCheck = ''