nix-jupyter/catppuccin_jupyterlab/default.nix
Evie Litherland-Smith 5230b3c635 Initial commit
Setup flake for easily making a JupyterLab instance with access to a
given kernel
2024-04-23 15:02:35 +01:00

16 lines
306 B
Nix

{
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";
};
}