1 { lib, buildPythonPackage, fetchPypi, jsonschema, notebook, pythonOlder }:
2 buildPythonPackage rec {
3 pname = "jupyterlab_launcher";
5 disabled = pythonOlder "3.5";
9 sha256 = "f880eada0b8b1f524d5951dc6fcae0d13b169897fc8a247d75fb5beadd69c5f0";
12 propagatedBuildInputs = [
17 # depends on requests and a bunch of other libraries
21 description = "This package is used to launch an application built using JupyterLab";
22 license = with licenses; [ bsd3 ];
23 homepage = "https://jupyter.org/";
24 maintainers = with maintainers; [ zimbatm ];