From 8106b948de8f95ec19085c40d7c0b3a2c176d737 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 2 Jun 2025 21:48:42 +0200 Subject: [PATCH] python313Packages.fst-pso: 1.8.1 -> 1.9.0 Changelog: https://github.com/aresio/fst-pso/releases/tag/1.9.0 --- .../python-modules/fst-pso/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/fst-pso/default.nix b/pkgs/development/python-modules/fst-pso/default.nix index 3096bb743d11..6deb524307de 100644 --- a/pkgs/development/python-modules/fst-pso/default.nix +++ b/pkgs/development/python-modules/fst-pso/default.nix @@ -5,21 +5,25 @@ miniful, numpy, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "fst-pso"; - version = "1.8.1"; - format = "setuptools"; + version = "1.9.0"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { - inherit pname version; - hash = "sha256-s9FuwnsLTTazWzBq9AwAzQs05eCp4wpx7QJJDolUomo="; + pname = "fst_pso"; + inherit version; + hash = "sha256-znf1A/Vcz5ELFGFrpDzdj8O3XEDxpu+mCCb35GfWqN8="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ miniful numpy ]; @@ -32,7 +36,8 @@ buildPythonPackage rec { meta = with lib; { description = "Fuzzy Self-Tuning PSO global optimization library"; homepage = "https://github.com/aresio/fst-pso"; - license = with licenses; [ lgpl3Only ]; + changelog = "https://github.com/aresio/fst-pso/releases/tag/${version}"; + license = licenses.lgpl3Only; maintainers = with maintainers; [ fab ]; }; }