nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.ipywidgets: 8.1.3 -> 8.1.5

+6 -10
+6 -10
pkgs/development/python-modules/ipywidgets/default.nix
··· 2 2 buildPythonPackage, 3 3 fetchPypi, 4 4 setuptools, 5 - wheel, 6 5 comm, 7 6 ipykernel, 8 7 ipython, 9 8 jsonschema, 10 9 jupyterlab-widgets, 11 10 lib, 12 - pytest7CheckHook, 11 + pytestCheckHook, 13 12 pytz, 14 13 traitlets, 15 14 widgetsnbextension, ··· 16 17 17 18 buildPythonPackage rec { 18 19 pname = "ipywidgets"; 19 - version = "8.1.3"; 20 + version = "8.1.5"; 20 21 pyproject = true; 21 22 22 23 src = fetchPypi { 23 24 inherit pname version; 24 - hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw="; 25 + hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc="; 25 26 }; 26 27 27 - nativeBuildInputs = [ 28 - setuptools 29 - wheel 30 - ]; 28 + build-system = [ setuptools ]; 31 29 32 - propagatedBuildInputs = [ 30 + dependencies = [ 33 31 comm 34 32 ipython 35 33 jupyterlab-widgets ··· 37 41 nativeCheckInputs = [ 38 42 ipykernel 39 43 jsonschema 40 - pytest7CheckHook 44 + pytestCheckHook 41 45 pytz 42 46 ]; 43 47