python313Packages.fst-pso: 1.8.1 -> 1.9.0

Changelog: https://github.com/aresio/fst-pso/releases/tag/1.9.0
This commit is contained in:
Fabian Affolter
2025-06-02 21:48:42 +02:00
parent e97c731667
commit 8106b948de
@@ -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 ];
};
}