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