2021-04-26 19:14:03 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, jupyter-packaging
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyterlab-widgets";
|
2022-01-13 20:06:32 +00:00
|
|
|
version = "1.0.2";
|
2021-04-26 19:14:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "jupyterlab_widgets";
|
|
|
|
inherit version;
|
2022-01-13 20:06:32 +00:00
|
|
|
sha256 = "7885092b2b96bf189c3a705cc3c412a4472ec5e8382d0b47219a66cccae73cfa";
|
2021-04-26 19:14:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|