mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pythonPackages.jupyterlab_launcher: init at 0.10.5
This commit is contained in:
parent
1d87af68c1
commit
636c634443
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, jsonschema, notebook }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "jupyterlab_launcher";
|
||||||
|
version = "0.10.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1v1ir182zm2dl14lqvqjhx2x40wnp0i32n6rldxnm1allfpld1n7";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
homepage = "http://jupyter.org/";
|
||||||
|
maintainers = with maintainers; [ zimbatm ];
|
||||||
|
};
|
||||||
|
}
|
@ -3449,6 +3449,8 @@ in {
|
|||||||
|
|
||||||
jupyter_console = callPackage ../development/python-modules/jupyter_console { };
|
jupyter_console = callPackage ../development/python-modules/jupyter_console { };
|
||||||
|
|
||||||
|
jupyterlab_launcher = callPackage ../development/python-modules/jupyterlab_launcher { };
|
||||||
|
|
||||||
jupyterlab = buildPythonPackage rec {
|
jupyterlab = buildPythonPackage rec {
|
||||||
name = "jupyterlab-${version}";
|
name = "jupyterlab-${version}";
|
||||||
version = "0.4.1";
|
version = "0.4.1";
|
||||||
|
Loading…
Reference in New Issue
Block a user