2018-04-07 19:00:09 +01:00
|
|
|
{ lib, buildPythonPackage, isPy3k, fetchPypi, ipython_genutils, jupyterlab_launcher, notebook }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyterlab";
|
2018-10-06 11:56:18 +01:00
|
|
|
version = "0.34.12";
|
2018-04-07 19:00:09 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-06 11:56:18 +01:00
|
|
|
sha256 = "7d8378d19a0ae173e91a493db996c37828b410b7ee556da21a153486168ecf87";
|
2018-04-07 19:00:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
ipython_genutils
|
|
|
|
jupyterlab_launcher
|
|
|
|
notebook
|
|
|
|
];
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Jupyter lab environment notebook server extension.";
|
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
homepage = "http://jupyter.org/";
|
2018-08-08 09:16:13 +01:00
|
|
|
maintainers = with maintainers; [ zimbatm costrouc ];
|
2018-04-07 19:00:09 +01:00
|
|
|
};
|
|
|
|
}
|