nixpkgs/pkgs/development/python-modules/gensim/default.nix
2020-04-13 09:43:55 -07:00

44 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, six
, scipy
, smart_open
, scikitlearn, testfixtures, unittest2
, isPy3k
}:
buildPythonPackage rec {
pname = "gensim";
version = "3.8.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1x9gvz954h10wgq02wybi21llwwjj9r1gal2qr82q7g1h9g0dqs6";
};
propagatedBuildInputs = [ smart_open numpy six scipy ];
checkInputs = [ scikitlearn testfixtures unittest2 ];
# 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 ];
};
}