pythonPackages.jupyterlab_launcher: init at 0.10.5

This commit is contained in:
zimbatm 2018-04-07 18:43:24 +01:00
parent 1d87af68c1
commit 636c634443
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
buildPythonPackage rec {
pname = "jupyterlab_launcher";
version = "0.10.5";
src = fetchPypi {
inherit pname version;
sha256 = "1v1ir182zm2dl14lqvqjhx2x40wnp0i32n6rldxnm1allfpld1n7";
};
propagatedBuildInputs = [
jsonschema
notebook
];
# depends on requests and a bunch of other libraries
doCheck = false;
meta = with lib; {
description = "This package is used to launch an application built using JupyterLab";
license = with licenses; [ bsd3 ];
homepage = "http://jupyter.org/";
maintainers = with maintainers; [ zimbatm ];
};
}

View File

@ -3449,6 +3449,8 @@ in {
jupyter_console = callPackage ../development/python-modules/jupyter_console { }; jupyter_console = callPackage ../development/python-modules/jupyter_console { };
jupyterlab_launcher = callPackage ../development/python-modules/jupyterlab_launcher { };
jupyterlab = buildPythonPackage rec { jupyterlab = buildPythonPackage rec {
name = "jupyterlab-${version}"; name = "jupyterlab-${version}";
version = "0.4.1"; version = "0.4.1";