2018-09-06 19:40:43 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook, pythonOlder }:
|
2018-04-07 18:43:24 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyterlab_launcher";
|
2018-08-13 08:26:19 +01:00
|
|
|
version = "0.13.1";
|
2018-09-06 19:40:43 +01:00
|
|
|
disabled = pythonOlder "3.5";
|
2018-04-07 18:43:24 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-13 08:26:19 +01:00
|
|
|
sha256 = "f880eada0b8b1f524d5951dc6fcae0d13b169897fc8a247d75fb5beadd69c5f0";
|
2018-04-07 18:43:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = "https://jupyter.org/";
|
2018-04-07 18:43:24 +01:00
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
};
|
|
|
|
}
|