python3Packages.jupyterlab-widgets: init at 1.0.0

This commit is contained in:
Jonathan Ringer 2021-03-24 12:06:34 -07:00 committed by Sandro Jäckel
parent b86327ef93
commit fffbc7ac55
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib, buildPythonPackage, fetchPypi
, jupyter-packaging
}:
buildPythonPackage rec {
pname = "jupyterlab-widgets";
version = "1.0.0";
src = fetchPypi {
pname = "jupyterlab_widgets";
inherit version;
sha256 = "0y7vhhas3qndiypcpcfnhrj9n92v2w4hdc86nn620s9h9nl2j6jw";
};
nativeBuildInputs = [
jupyter-packaging
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "jupyterlab_widgets" ];
meta = with lib; {
description = "Jupyter Widgets JupyterLab Extension";
homepage = "https://github.com/jupyter-widgets/ipywidgets";
license = licenses.bsd3;
maintainers = with maintainers; [ jonringer SuperSandro2000 ];
};
}

View File

@ -3414,6 +3414,8 @@ in {
jupyterlab_server = callPackage ../development/python-modules/jupyterlab_server { };
jupyterlab-widgets = callPackage ../development/python-modules/jupyterlab-widgets { };
jupyter-packaging = callPackage ../development/python-modules/jupyter-packaging { };
jupyter-repo2docker = callPackage ../development/python-modules/jupyter-repo2docker {