2017-06-12 09:15:19 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, numpy
|
|
|
|
, six
|
|
|
|
, scipy
|
|
|
|
, smart_open
|
|
|
|
, scikitlearn
|
|
|
|
, testfixtures
|
|
|
|
, unittest2
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gensim";
|
|
|
|
name = "${pname}-${version}";
|
2017-08-24 18:34:20 +01:00
|
|
|
version = "2.3.0";
|
2017-06-12 09:15:19 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-08-24 18:34:20 +01:00
|
|
|
sha256 = "7d0dccc7d2c576e270037949874800b7cfbc86ef081ff981483f612cd18e223f";
|
2017-06-12 09:15:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ smart_open numpy six scipy
|
|
|
|
# scikitlearn testfixtures unittest2 # for tests
|
|
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|