python310Packages.fuzzytm: init at 2.0.5
This commit is contained in:
parent
7ca0c7b4f7
commit
2b6b08f921
46
pkgs/development/python-modules/fuzzytm/default.nix
Normal file
46
pkgs/development/python-modules/fuzzytm/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3804,6 +3804,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
fuzzyfinder = callPackage ../development/python-modules/fuzzyfinder { };
|
fuzzyfinder = callPackage ../development/python-modules/fuzzyfinder { };
|
||||||
|
|
||||||
|
fuzzytm = callPackage ../development/python-modules/fuzzytm { };
|
||||||
|
|
||||||
fuzzywuzzy = callPackage ../development/python-modules/fuzzywuzzy { };
|
fuzzywuzzy = callPackage ../development/python-modules/fuzzywuzzy { };
|
||||||
|
|
||||||
fvs = callPackage ../development/python-modules/fvs { };
|
fvs = callPackage ../development/python-modules/fvs { };
|
||||||
|
Loading…
Reference in New Issue
Block a user