3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.pyfume: init at 0.2.25

This commit is contained in:
Fabian Affolter 2023-05-01 17:50:07 +02:00
parent dea8e8f853
commit 8ae7eef571
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, fst-pso
, numpy
, pandas
, pythonOlder
, scipy
, simpful
}:
buildPythonPackage rec {
pname = "pyfume";
version = "0.2.25";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "pyFUME";
inherit version;
hash = "sha256-uD1IHFyNd9yv3eyHPZ4pg6X2+rLTY5sYsQysuIXbvfA=";
};
propagatedBuildInputs = [
fst-pso
numpy
pandas
scipy
simpful
];
# Module has not test
doCheck = false;
pythonImportsCheck = [
"pyfume"
];
meta = with lib; {
description = "A Python package for fuzzy model estimation";
homepage = "https://github.com/CaroFuchs/pyFUME";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -8359,6 +8359,8 @@ self: super: with self; {
pyfttt = callPackage ../development/python-modules/pyfttt { }; pyfttt = callPackage ../development/python-modules/pyfttt { };
pyfume = callPackage ../development/python-modules/pyfume { };
pyfuse3 = callPackage ../development/python-modules/pyfuse3 { }; pyfuse3 = callPackage ../development/python-modules/pyfuse3 { };
pyfxa = callPackage ../development/python-modules/pyfxa { }; pyfxa = callPackage ../development/python-modules/pyfxa { };