1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 gensim,
6 numpy,
7 pandas,
8 pyfume,
9 setuptools,
10 scipy,
11 pythonOlder,
12}:
13
14buildPythonPackage rec {
15 pname = "fuzzytm";
16 version = "2.0.9";
17 pyproject = true;
18
19 disabled = pythonOlder "3.7";
20
21 src = fetchPypi {
22 pname = "FuzzyTM";
23 inherit version;
24 hash = "sha256-z0ESYtB7BqssxIHlrd0F+/qapOM1nrDi3Zih5SvgDGY=";
25 };
26
27 build-system = [ setuptools ];
28
29 dependencies = [
30 gensim
31 numpy
32 pandas
33 pyfume
34 scipy
35 ];
36
37 # Module has no tests
38 doCheck = false;
39
40 pythonImportsCheck = [ "FuzzyTM" ];
41
42 meta = with lib; {
43 description = "Library for Fuzzy Topic Models";
44 homepage = "https://github.com/ERijck/FuzzyTM";
45 license = licenses.gpl2Only;
46 maintainers = with maintainers; [ fab ];
47 };
48}