94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
46 lines
748 B
Nix
46 lines
748 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, gensim
|
|
, numpy
|
|
, pandas
|
|
, pyfume
|
|
, scipy
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fuzzytm";
|
|
version = "2.0.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "FuzzyTM";
|
|
inherit version;
|
|
hash = "sha256-IELkjd3/yc2lBYsLP6mms9LEcXOfVtNNooEKCMf9BtU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
gensim
|
|
numpy
|
|
pandas
|
|
pyfume
|
|
scipy
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"FuzzyTM"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for Fuzzy Topic Models";
|
|
homepage = "https://github.com/ERijck/FuzzyTM";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|