blob: b79bf238d48cf01f3a0e89477a0b9cdaa43b6911 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
buildPythonPackage,
fetchPypi,
fst-pso,
numpy,
pandas,
pythonOlder,
scipy,
setuptools,
simpful,
typing-extensions,
}:
buildPythonPackage rec {
pname = "pyfume";
version = "0.3.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-UwW5OwFfu01lDKwz72iB2egbOoxb+t8UnEFIUjZmffU=";
};
nativeBuildInputs = [ setuptools ];
pythonRelaxDeps = [
"numpy"
"pandas"
"scipy"
];
propagatedBuildInputs = [
fst-pso
numpy
pandas
scipy
simpful
typing-extensions
];
# Module has not test
doCheck = false;
pythonImportsCheck = [ "pyfume" ];
meta = with lib; {
description = "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 ];
};
}
|