depot/third_party/nixpkgs/pkgs/development/python-modules/ipywidgets/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

53 lines
840 B
Nix

{
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
comm,
ipykernel,
ipython,
jsonschema,
jupyterlab-widgets,
lib,
pytest7CheckHook,
pytz,
traitlets,
widgetsnbextension,
}:
buildPythonPackage rec {
pname = "ipywidgets";
version = "8.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
comm
ipython
jupyterlab-widgets
traitlets
widgetsnbextension
];
nativeCheckInputs = [
ipykernel
jsonschema
pytest7CheckHook
pytz
];
meta = {
description = "IPython HTML widgets for Jupyter";
homepage = "https://github.com/jupyter-widgets/ipywidgets";
license = lib.licenses.bsd3;
};
}