2021-04-26 19:14:03 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, jupyter-packaging
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jupyterlab-widgets";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "3.0.9";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2021-04-26 19:14:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "jupyterlab_widgets";
|
|
|
|
inherit version;
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-YAWk6XTHvu6EBg/fujQaMhhJUEbeiuPsZIiOX+Gf20w=";
|
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;
|
2023-08-04 22:07:22 +00:00
|
|
|
maintainers = with maintainers; [ jonringer ];
|
2021-04-26 19:14:03 +00:00
|
|
|
};
|
|
|
|
}
|