biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ipywidgets / default.nix
blobe21b5ac8bbf022cadafaced90facc4998efb8654
2   buildPythonPackage,
3   fetchPypi,
4   setuptools,
5   comm,
6   ipykernel,
7   ipython,
8   jsonschema,
9   jupyterlab-widgets,
10   lib,
11   pytestCheckHook,
12   pytz,
13   traitlets,
14   widgetsnbextension,
17 buildPythonPackage rec {
18   pname = "ipywidgets";
19   version = "8.1.5";
20   pyproject = true;
22   src = fetchPypi {
23     inherit pname version;
24     hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc=";
25   };
27   build-system = [ setuptools ];
29   dependencies = [
30     comm
31     ipython
32     jupyterlab-widgets
33     traitlets
34     widgetsnbextension
35   ];
37   nativeCheckInputs = [
38     ipykernel
39     jsonschema
40     pytestCheckHook
41     pytz
42   ];
44   meta = {
45     description = "IPython HTML widgets for Jupyter";
46     homepage = "https://github.com/jupyter-widgets/ipywidgets";
47     license = lib.licenses.bsd3;
48   };