nixpkgs/pkgs/development/python-modules/gensim/default.nix

44 lines
1.0 KiB
Nix
Raw Normal View History

2017-06-12 08:15:19 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, six
, scipy
, smart-open
, scikit-learn, testfixtures, unittest2
, isPy3k
2017-06-12 08:15:19 +00:00
}:
buildPythonPackage rec {
pname = "gensim";
version = "4.1.2";
disabled = !isPy3k;
2019-03-01 08:06:20 +00:00
2017-06-12 08:15:19 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1932c257de4eccbb64cc40d46e8577a25f5f47b94b96019a969fb36150f11d15";
2017-06-12 08:15:19 +00:00
};
propagatedBuildInputs = [ smart-open numpy six scipy ];
2017-06-12 08:15:19 +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";
homepage = "https://radimrehurek.com/gensim/";
2017-06-12 08:15:19 +00:00
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ jyp ];
2017-06-12 08:15:19 +00:00
};
}