1{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook, pythonOlder }: 2buildPythonPackage rec { 3 pname = "jupyterlab_launcher"; 4 version = "0.13.1"; 5 disabled = pythonOlder "3.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f880eada0b8b1f524d5951dc6fcae0d13b169897fc8a247d75fb5beadd69c5f0"; 10 }; 11 12 propagatedBuildInputs = [ 13 jsonschema 14 notebook 15 ]; 16 17 # depends on requests and a bunch of other libraries 18 doCheck = false; 19 20 meta = with lib; { 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 ]; 25 }; 26}