Merge pull request #292758 from fabaff/pyfume-bump

python311Packages.pyfume: 0.2.25 -> 0.3.0
This commit is contained in:
Fabian Affolter 2024-03-03 21:35:52 +01:00 committed by GitHub
commit 7a0b371a25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,13 +6,14 @@
, pandas
, pythonOlder
, scipy
, setuptools
, simpful
}:
buildPythonPackage rec {
pname = "pyfume";
version = "0.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -22,6 +23,10 @@ buildPythonPackage rec {
hash = "sha256-dZKp+BGwOSRlPcaDmY8LRJZEdJA3WaIGcBBOek5ZMf4=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
fst-pso
numpy
@ -40,6 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A Python package for fuzzy model estimation";
homepage = "https://github.com/CaroFuchs/pyFUME";
changelog = "https://github.com/CaroFuchs/pyFUME/releases/tag/${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};