Merge pull request #153972 from r-ryantm/auto-update/python3.8-jupyterlab

python38Packages.jupyterlab: 3.2.5 -> 3.2.6
This commit is contained in:
Fabian Affolter 2022-01-08 12:08:24 +01:00 committed by GitHub
commit a801c31fa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,29 +10,41 @@
buildPythonPackage rec {
pname = "jupyterlab";
version = "3.2.5";
disabled = pythonOlder "3.5";
version = "3.2.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "31b28f473b0f5826d2020583973c385526f0559b5b26efac6b8035ac1562874a";
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 ];