Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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, ··· 17 16 18 17 buildPythonPackage rec { 19 18 pname = "ipywidgets"; 20 - version = "8.1.3"; 19 + version = "8.1.5"; 21 20 pyproject = true; 22 21 23 22 src = fetchPypi { 24 23 inherit pname version; 25 - hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw="; 24 + hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc="; 26 25 }; 27 26 28 - nativeBuildInputs = [ 29 - setuptools 30 - wheel 31 - ]; 27 + build-system = [ setuptools ]; 32 28 33 - propagatedBuildInputs = [ 29 + dependencies = [ 34 30 comm 35 31 ipython 36 32 jupyterlab-widgets ··· 41 37 nativeCheckInputs = [ 42 38 ipykernel 43 39 jsonschema 44 - pytest7CheckHook 40 + pytestCheckHook 45 41 pytz 46 42 ]; 47 43