2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, numpy
|
|
|
|
, six
|
|
|
|
, scipy
|
2021-05-28 09:39:13 +00:00
|
|
|
, smart-open
|
2021-05-20 23:08:51 +00:00
|
|
|
, scikit-learn, testfixtures, unittest2
|
2020-04-24 23:36:52 +00:00
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gensim";
|
2021-08-08 23:34:03 +00:00
|
|
|
version = "4.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-08 23:34:03 +00:00
|
|
|
sha256 = "a9c9fed52e2901ad04f9caf73a5dd782e5ce8054f71b346d72f04ddff1b7b432";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
propagatedBuildInputs = [ smart-open numpy six scipy ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
checkInputs = [ scikit-learn testfixtures unittest2 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Two tests fail.
|
|
|
|
#
|
|
|
|
# ERROR: testAddMorphemesToEmbeddings (gensim.test.test_varembed_wrapper.TestVarembed)
|
|
|
|
# ImportError: Could not import morfessor.
|
|
|
|
# This package is not in nix
|
|
|
|
#
|
|
|
|
# ERROR: testWmdistance (gensim.test.test_fasttext_wrapper.TestFastText)
|
|
|
|
# ImportError: Please install pyemd Python package to compute WMD.
|
|
|
|
# This package is not in nix
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Topic-modelling library";
|
|
|
|
homepage = "https://radimrehurek.com/gensim/";
|
|
|
|
license = lib.licenses.lgpl21;
|
|
|
|
maintainers = with lib.maintainers; [ jyp ];
|
|
|
|
};
|
|
|
|
}
|