Merge pull request #107137 from kneitinger/platformio_add_click_completion

platformio: Enable shell completion generation
This commit is contained in:
Sandro 2021-03-21 17:47:30 +01:00 committed by GitHub
commit 5e4a4e0c32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
];