1{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
2buildPythonPackage rec {
3 pname = "jupyterlab_launcher";
4 version = "0.13.1";
5
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "f880eada0b8b1f524d5951dc6fcae0d13b169897fc8a247d75fb5beadd69c5f0";
9 };
10
11 propagatedBuildInputs = [
12 jsonschema
13 notebook
14 ];
15
16 # depends on requests and a bunch of other libraries
17 doCheck = false;
18
19 meta = with lib; {
20 description = "This package is used to launch an application built using JupyterLab";
21 license = with licenses; [ bsd3 ];
22 homepage = "http://jupyter.org/";
23 maintainers = with maintainers; [ zimbatm ];
24 };
25}