From 2cf7c7fd9ea044cb25d4cd73c73d10a44dde0347 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sun, 1 Sep 2024 10:57:36 +0900 Subject: [PATCH] python312Packages.ipywidgets: 8.1.3 -> 8.1.5 --- .../python-modules/ipywidgets/default.nix | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/ipywidgets/default.nix b/pkgs/development/python-modules/ipywidgets/default.nix index 8c985163653b..e21b5ac8bbf0 100644 --- a/pkgs/development/python-modules/ipywidgets/default.nix +++ b/pkgs/development/python-modules/ipywidgets/default.nix @@ -2,14 +2,13 @@ buildPythonPackage, fetchPypi, setuptools, - wheel, comm, ipykernel, ipython, jsonschema, jupyterlab-widgets, lib, - pytest7CheckHook, + pytestCheckHook, pytz, traitlets, widgetsnbextension, @@ -17,20 +16,17 @@ buildPythonPackage rec { pname = "ipywidgets"; - version = "8.1.3"; + version = "8.1.5"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-9fnuquCCsYI86erCV1JylS9A10iJOXKVbcCXAKY5LZw="; + hash = "sha256-hw5DsaNWVqgMGMlQO78tFoAtsctIfuxvqyfWgzgd3hc="; }; - nativeBuildInputs = [ - setuptools - wheel - ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ comm ipython jupyterlab-widgets @@ -41,7 +37,7 @@ buildPythonPackage rec { nativeCheckInputs = [ ipykernel jsonschema - pytest7CheckHook + pytestCheckHook pytz ];