From e05b32d8941c90f5af8da85f29190c45e917bbd3 Mon Sep 17 00:00:00 2001 From: Francis St-Amour Date: Sat, 21 Sep 2019 14:59:18 -0400 Subject: [PATCH] add python3 to shell.nix (#6774) --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index e85221975d3..df5aff3508f 100644 --- a/shell.nix +++ b/shell.nix @@ -32,7 +32,7 @@ in stdenv.mkDerivation { name = "qmk-firmware"; - buildInputs = [ dfu-programmer dfu-util diffutils git ] + buildInputs = [ dfu-programmer dfu-util diffutils git python3 ] ++ lib.optional avr [ avrbinutils avrgcc avrlibc avrdude ] ++ lib.optional arm [ gcc-arm-embedded ] ++ lib.optional teensy [ teensy-loader-cli ];