16 lines
306 B
Nix
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";
|
||
|
};
|
||
|
}
|