Install jupyterlab + extensions by default with python

This commit is contained in:
Evie Litherland-Smith 2024-03-25 17:07:37 +00:00
parent 39a8e48ba5
commit bc46af61a6
2 changed files with 25 additions and 3 deletions

View file

@ -0,0 +1,15 @@
{
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

@ -12,10 +12,17 @@
stylua
# Python
python3
python3Packages.python-lsp-server
(python3.withPackages
(ps:
with ps; [
python-lsp-server
isort
mypy
jupyterlab
jupyterlab-git
(callPackage ./catppuccin_jupyterlab/default.nix {})
]))
ruff
mypy
# Fortran
gfortran