From 70e5cc7fdb44059823eeb3391ae761be084d2b18 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 27 Sep 2025 20:49:51 +0200 Subject: [PATCH] python313Packages.bumps: 1.0.2 -> 1.0.3 Changelog: https://github.com/bumps/bumps/releases/tag/v1.0.3 --- .../python-modules/bumps/default.nix | 46 ++++++++++--------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/pkgs/development/python-modules/bumps/default.nix b/pkgs/development/python-modules/bumps/default.nix index 7dc667b511ab..7546c5228d2b 100644 --- a/pkgs/development/python-modules/bumps/default.nix +++ b/pkgs/development/python-modules/bumps/default.nix @@ -1,32 +1,34 @@ { lib, - buildPythonPackage, - fetchPypi, - pythonOlder, - setuptools, - versioningit, - numpy, - scipy, - h5py, - dill, - matplotlib, - blinker, aiohttp, - python, + blinker, + buildPythonPackage, + cloudpickle, + dill, + fetchPypi, + h5py, + matplotlib, + msgpack, + numpy, plotly, python-socketio, + python, + pythonOlder, + scipy, + setuptools, + versioningit, }: buildPythonPackage rec { pname = "bumps"; - version = "1.0.2"; + version = "1.0.3"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-YfnBA1rCD05B4XOS611qgi4ab3xKoYs108mwhj/I+sg="; + hash = "sha256-O5GUoyDlB0X2Z/O3JprN3omoOBDIhv0xrKfUSHTgGpM="; }; pythonRemoveDeps = [ @@ -39,16 +41,18 @@ buildPythonPackage rec { ]; dependencies = [ - numpy - scipy - h5py - dill - matplotlib - blinker aiohttp - python + blinker + cloudpickle + dill + h5py + matplotlib + msgpack + numpy plotly + python python-socketio + scipy # mpld3 # not packaged ];