2018-11-04 02:14:36 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, jupyterlab_server
|
|
|
|
, notebook
|
|
|
|
, pythonOlder
|
2020-12-29 08:13:17 +00:00
|
|
|
, jupyter-packaging
|
|
|
|
, nbclassic
|
2018-11-04 02:14:36 +00:00
|
|
|
}:
|
|
|
|
|
2018-04-07 19:00:09 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyterlab";
|
2021-08-26 20:32:37 +01:00
|
|
|
version = "3.1.9";
|
2018-11-04 02:14:36 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
2018-04-07 19:00:09 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 20:32:37 +01:00
|
|
|
sha256 = "007e42f833e59fd36872d459e45be243d899edbd0e4a98d21388632e4e0d8af7";
|
2018-04-07 19:00:09 +01:00
|
|
|
};
|
|
|
|
|
2021-04-08 20:53:54 +01:00
|
|
|
nativeBuildInputs = [ jupyter-packaging ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ jupyterlab_server notebook nbclassic ];
|
2018-04-07 19:00:09 +01:00
|
|
|
|
2018-04-09 15:17:42 +01:00
|
|
|
makeWrapperArgs = [
|
|
|
|
"--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab"
|
|
|
|
];
|
|
|
|
|
2018-04-07 22:14:08 +01:00
|
|
|
# Depends on npm
|
2018-04-07 19:00:09 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-04-08 20:53:54 +01:00
|
|
|
pythonImportsCheck = [ "jupyterlab" ];
|
|
|
|
|
2018-04-07 19:00:09 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Jupyter lab environment notebook server extension.";
|
|
|
|
license = with licenses; [ bsd3 ];
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = "https://jupyter.org/";
|
2018-08-08 09:16:13 +01:00
|
|
|
maintainers = with maintainers; [ zimbatm costrouc ];
|
2018-04-07 19:00:09 +01:00
|
|
|
};
|
|
|
|
}
|