2017-06-12 08:15:19 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, numpy
|
|
|
|
, six
|
|
|
|
, scipy
|
2021-03-15 00:01:41 +00:00
|
|
|
, smart-open
|
2021-05-14 18:46:36 +00:00
|
|
|
, scikit-learn, testfixtures, unittest2
|
2019-10-07 15:20:23 +00:00
|
|
|
, isPy3k
|
2017-06-12 08:15:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gensim";
|
2020-05-09 05:38:12 +00:00
|
|
|
version = "3.8.3";
|
2019-10-07 15:20:23 +00:00
|
|
|
disabled = !isPy3k;
|
2019-03-01 08:06:20 +00:00
|
|
|
|
2017-06-12 08:15:19 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 05:38:12 +00:00
|
|
|
sha256 = "0rx37vnjspjl45v7bj123xwsjfgbwv91v8zpqpli8lgpf42xnskq";
|
2017-06-12 08:15:19 +00:00
|
|
|
};
|
|
|
|
|
2021-03-15 00:01:41 +00:00
|
|
|
propagatedBuildInputs = [ smart-open numpy six scipy ];
|
2017-06-12 08:15:19 +00:00
|
|
|
|
2021-05-14 18:46:36 +00:00
|
|
|
checkInputs = [ scikit-learn testfixtures unittest2 ];
|
2017-06-12 08:15:19 +00:00
|
|
|
|
2018-08-08 21:07:18 +00:00
|
|
|
# Two tests fail.
|
|
|
|
#
|
2017-06-12 08:15:19 +00:00
|
|
|
# ERROR: testAddMorphemesToEmbeddings (gensim.test.test_varembed_wrapper.TestVarembed)
|
|
|
|
# ImportError: Could not import morfessor.
|
|
|
|
# This package is not in nix
|
2018-08-08 21:07:18 +00:00
|
|
|
#
|
2017-06-12 08:15:19 +00:00
|
|
|
# ERROR: testWmdistance (gensim.test.test_fasttext_wrapper.TestFastText)
|
|
|
|
# ImportError: Please install pyemd Python package to compute WMD.
|
|
|
|
# This package is not in nix
|
2018-08-08 21:07:18 +00:00
|
|
|
doCheck = false;
|
2017-06-12 08:15:19 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Topic-modelling library";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://radimrehurek.com/gensim/";
|
2017-06-12 08:15:19 +00:00
|
|
|
license = lib.licenses.lgpl21;
|
2017-09-12 07:59:28 +00:00
|
|
|
maintainers = with lib.maintainers; [ jyp ];
|
2017-06-12 08:15:19 +00:00
|
|
|
};
|
|
|
|
}
|