python3Packages.jupyterlab: update meta

This commit is contained in:
Fabian Affolter
2022-01-08 11:49:51 +01:00
committed by GitHub
parent b972654ba2
commit 0680de41d0
@@ -11,28 +11,40 @@
buildPythonPackage rec {
pname = "jupyterlab";
version = "3.2.6";
disabled = pythonOlder "3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "04e763974010f0f424ee889238fa488ee11708d0546e6df6e2cad9e0fc724bdb";
};
nativeBuildInputs = [ jupyter-packaging ];
nativeBuildInputs = [
jupyter-packaging
];
propagatedBuildInputs = [ jupyterlab_server notebook nbclassic ];
propagatedBuildInputs = [
jupyterlab_server
notebook
nbclassic
];
makeWrapperArgs = [
"--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab"
"--set"
"JUPYTERLAB_DIR"
"$out/share/jupyter/lab"
];
# Depends on npm
doCheck = false;
pythonImportsCheck = [ "jupyterlab" ];
pythonImportsCheck = [
"jupyterlab"
];
meta = with lib; {
description = "Jupyter lab environment notebook server extension.";
description = "Jupyter lab environment notebook server extension";
license = with licenses; [ bsd3 ];
homepage = "https://jupyter.org/";
maintainers = with maintainers; [ zimbatm costrouc ];