mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/dap-python: Add debugpy to dap-python (#761)
This commit is contained in:
parent
5638a3f3a1
commit
f56d412f84
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ in {
|
||||||
package = helpers.mkPackageOption "dap-python" pkgs.vimPlugins.nvim-dap-python;
|
package = helpers.mkPackageOption "dap-python" pkgs.vimPlugins.nvim-dap-python;
|
||||||
|
|
||||||
adapterPythonPath = mkOption {
|
adapterPythonPath = mkOption {
|
||||||
default = "${pkgs.python3}/bin/python3";
|
default = "${pkgs.python3.withPackages (ps: with ps; [debugpy])}/bin/python3";
|
||||||
description = "Path to the python interpreter. Path must be absolute or in $PATH and needs to have the debugpy package installed.";
|
description = "Path to the python interpreter. Path must be absolute or in $PATH and needs to have the debugpy package installed.";
|
||||||
type = types.str;
|
type = types.str;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue