{ lib , buildPythonPackage , fetchPypi , jupyterlab_server , notebook , pythonOlder }: buildPythonPackage rec { pname = "jupyterlab"; version = "1.2.5"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; sha256 = "086zl3pdsq2jwcxv7ppp3lpwh25mgnn0y0s6scmkrz158yj55kp3"; }; propagatedBuildInputs = [ jupyterlab_server notebook ]; makeWrapperArgs = [ "--set" "JUPYTERLAB_DIR" "$out/share/jupyter/lab" ]; # Depends on npm doCheck = false; meta = with lib; { description = "Jupyter lab environment notebook server extension."; license = with licenses; [ bsd3 ]; homepage = "https://jupyter.org/"; maintainers = with maintainers; [ zimbatm costrouc ]; }; }