2017-06-12 10:15:19 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, numpy
|
|
|
|
, six
|
|
|
|
, scipy
|
|
|
|
, smart_open
|
2018-08-08 23:07:18 +02:00
|
|
|
, scikitlearn, testfixtures, unittest2
|
2019-10-07 17:20:23 +02:00
|
|
|
, isPy3k
|
2017-06-12 10:15:19 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gensim";
|
2020-04-13 14:44:52 +02:00
|
|
|
version = "3.8.2";
|
2019-10-07 17:20:23 +02:00
|
|
|
disabled = !isPy3k;
|
2019-03-01 09:06:20 +01:00
|
|
|
|
2017-06-12 10:15:19 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-13 14:44:52 +02:00
|
|
|
sha256 = "1x9gvz954h10wgq02wybi21llwwjj9r1gal2qr82q7g1h9g0dqs6";
|
2017-06-12 10:15:19 +02:00
|
|
|
};
|
|
|
|
|
2018-08-08 23:07:18 +02:00
|
|
|
propagatedBuildInputs = [ smart_open numpy six scipy ];
|
2017-06-12 10:15:19 +02:00
|
|
|
|
2018-08-08 23:07:18 +02:00
|
|
|
checkInputs = [ scikitlearn testfixtures unittest2 ];
|
2017-06-12 10:15:19 +02:00
|
|
|
|
2018-08-08 23:07:18 +02:00
|
|
|
# Two tests fail.
|
|
|
|
#
|
2017-06-12 10:15:19 +02:00
|
|
|
# ERROR: testAddMorphemesToEmbeddings (gensim.test.test_varembed_wrapper.TestVarembed)
|
|
|
|
# ImportError: Could not import morfessor.
|
|
|
|
# This package is not in nix
|
2018-08-08 23:07:18 +02:00
|
|
|
#
|
2017-06-12 10:15:19 +02: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 23:07:18 +02:00
|
|
|
doCheck = false;
|
2017-06-12 10:15:19 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Topic-modelling library";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://radimrehurek.com/gensim/";
|
2017-06-12 10:15:19 +02:00
|
|
|
license = lib.licenses.lgpl21;
|
2017-09-12 09:59:28 +02:00
|
|
|
maintainers = with lib.maintainers; [ jyp ];
|
2017-06-12 10:15:19 +02:00
|
|
|
};
|
|
|
|
}
|