Install jupyterlab + extensions by default with python
This commit is contained in:
parent
39a8e48ba5
commit
bc46af61a6
15
home/prog/catppuccin_jupyterlab/default.nix
Normal file
15
home/prog/catppuccin_jupyterlab/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue