mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
Add jupytext python3Dependency to jupytext plugin
This commit is contained in:
parent
aabbd60633
commit
c0742ca466
1 changed files with 17 additions and 0 deletions
|
@ -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.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue