mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #107137 from kneitinger/platformio_add_click_completion
platformio: Enable shell completion generation
This commit is contained in:
commit
5e4a4e0c32
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue