1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

Add jupytext python3Dependency to jupytext plugin

This commit is contained in:
bpatel347 2024-11-08 07:58:58 -05:00
parent aabbd60633
commit c0742ca466

View file

@ -61,4 +61,21 @@ helpers.neovim-plugin.mkNeovimPlugin {
};
};
};
extraOptions = {
python3Dependencies = mkOption {
type = with types; functionTo (listOf package);
default =
p: with p; [
jupytext
];
defaultText = literalExpression ''
p: with p; [
jupytext
]
'';
description = "Python packages to add to the `PYTHONPATH` of neovim.";
};
};
}