forked from mirrors/nixpkgs
python310Packages.pyfume: init at 0.2.25
This commit is contained in:
parent
dea8e8f853
commit
8ae7eef571
46
pkgs/development/python-modules/pyfume/default.nix
Normal file
46
pkgs/development/python-modules/pyfume/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -8359,6 +8359,8 @@ self: super: with self; {
|
|||
|
||||
pyfttt = callPackage ../development/python-modules/pyfttt { };
|
||||
|
||||
pyfume = callPackage ../development/python-modules/pyfume { };
|
||||
|
||||
pyfuse3 = callPackage ../development/python-modules/pyfuse3 { };
|
||||
|
||||
pyfxa = callPackage ../development/python-modules/pyfxa { };
|
||||
|
|
Loading…
Reference in a new issue