Don't install JS/TS stuff by default

This commit is contained in:
Evie Litherland-Smith 2024-05-10 06:41:31 +01:00
parent 7d5236a773
commit 8c514e017f
3 changed files with 0 additions and 28 deletions

View file

@ -21,10 +21,5 @@
# FORTRAN # FORTRAN
fortls fortls
# JavaScript / TypeScript
nodejs
nodePackages.typescript-language-server
nodePackages.eslint
]; ];
} }

View file

@ -1,15 +0,0 @@
{
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "catppuccin_jupyterlab";
version = "0.2.0";
format = "wheel";
src = fetchPypi {
inherit pname version format;
hash = "sha256-qPML3SXyuDsqLeYasaS3QFylKDIvbtp0xtnjh7IOYrI=";
dist = "py3";
python = "py3";
};
}

View file

@ -1,8 +0,0 @@
{python, ...}:
with python.pkgs; [
jupyterlab
jupyterlab-git
nbdime
nbconvert
(callPackage ./catppuccin_jupyterlab/default.nix {})
]