Merge pull request #260162 from doronbehar/pkg/jupyter-misc

python310Packages.jupyterlab: add meta.mainProgram
This commit is contained in:
Doron Behar 2023-10-24 17:05:08 +00:00 committed by GitHub
commit 43c54e8280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,8 @@
, jsonschema
, jupyter-telemetry
, jupyterlab
, jupyter-core
, jupyter-server
, mock
, nbclassic
, nodePackages
@ -138,6 +140,8 @@ buildPythonPackage rec {
sqlalchemy
tornado
traitlets
jupyter-core
jupyter-server
] ++ lib.optionals (pythonOlder "3.10") [
importlib-metadata
];

View File

@ -69,5 +69,6 @@ buildPythonPackage rec {
license = licenses.bsd3;
homepage = "https://jupyter.org/";
maintainers = lib.teams.jupyter.members;
mainProgram = "jupyter-lab";
};
}