plugins/dap-python: Add debugpy to dap-python (#761)

This commit is contained in:
Dane Lipscombe 2023-11-29 20:31:20 +11:00 committed by GitHub
parent 5638a3f3a1
commit f56d412f84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ in {
package = helpers.mkPackageOption "dap-python" pkgs.vimPlugins.nvim-dap-python;
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.";
type = types.str;
};