18 lines
189 B
Nix
18 lines
189 B
Nix
{
|
|
mkShell
|
|
, nodejs
|
|
|
|
, python3
|
|
}:
|
|
|
|
mkShell {
|
|
packages = [
|
|
nodejs
|
|
(python3.withPackages (ppkgs: with ppkgs; [
|
|
sphinx
|
|
sphinx-rtd-theme
|
|
myst-parser
|
|
]))
|
|
];
|
|
}
|