python313Packages.fst-pso: 1.8.1 -> 1.9.0

Changelog: https://github.com/aresio/fst-pso/releases/tag/1.9.0

Changed files
+11 -6
pkgs
development
python-modules
fst-pso
+11 -6
pkgs/development/python-modules/fst-pso/default.nix
···
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
];
···
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 ];
};
}