nixpkgs/pkgs/development/python-modules/ipywidgets/default.nix
Martin Weinelt 02ac24b9fe python3Packages.ipywidgets: 8.1.7 -> 8.1.8
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:20 +01:00

49 lines
799 B
Nix

{
buildPythonPackage,
fetchPypi,
setuptools,
comm,
ipykernel,
ipython,
jsonschema,
jupyterlab-widgets,
lib,
pytestCheckHook,
pytz,
traitlets,
widgetsnbextension,
}:
buildPythonPackage rec {
pname = "ipywidgets";
version = "8.1.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-YflpMGuV+F+6a2mGt/5F1zEk0dnjAjqAaHENR6Iupmg=";
};
build-system = [ setuptools ];
dependencies = [
comm
ipython
jupyterlab-widgets
traitlets
widgetsnbextension
];
nativeCheckInputs = [
ipykernel
jsonschema
pytestCheckHook
pytz
];
meta = {
description = "IPython HTML widgets for Jupyter";
homepage = "https://github.com/jupyter-widgets/ipywidgets";
license = lib.licenses.bsd3;
};
}