summary refs log tree commit diff
path: root/pkgs/development/arduino
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-03-21 17:47:30 +0100
committerGitHub <noreply@github.com>2021-03-21 17:47:30 +0100
commit5e4a4e0c32f0ca0a5bd4ebbbf17aedd347de7f3e (patch)
tree1ff54f811faa8b9199752b24abbc80b8bc5d07e8 /pkgs/development/arduino
parentd2273d51c3232082edd4f0fccb5a7bab041030f3 (diff)
parent90041a06456e2738b3c9138c1c3e321116cd5b11 (diff)
Merge pull request #107137 from kneitinger/platformio_add_click_completion
platformio: Enable shell completion generation
Diffstat (limited to 'pkgs/development/arduino')
-rw-r--r--pkgs/development/arduino/platformio/core.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/arduino/platformio/core.nix b/pkgs/development/arduino/platformio/core.nix
index 733e7e0b1462f..17e87f2cb6c58 100644
--- a/pkgs/development/arduino/platformio/core.nix
+++ b/pkgs/development/arduino/platformio/core.nix
@@ -1,5 +1,5 @@
-{ stdenv, lib, buildPythonApplication, fetchpatch
-, bottle, click, colorama, semantic-version
+{ stdenv, lib, buildPythonApplication, bottle
+, click, click-completion, colorama, semantic-version
 , lockfile, pyserial, requests
 , tabulate, pyelftools, marshmallow
 , pytest, tox, jsondiff
@@ -79,8 +79,8 @@ in buildPythonApplication rec {
   inherit version src;
 
   propagatedBuildInputs =  [
-    bottle click colorama git lockfile
-    pyserial requests semantic-version
+    bottle click click-completion colorama git
+    lockfile pyserial requests semantic-version
     tabulate pyelftools marshmallow
   ];