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

41 lines
1,017 B
Nix
Raw Normal View History

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
2017-06-12 10:15:19 +02:00
}:
buildPythonPackage rec {
pname = "gensim";
2019-02-14 08:37:16 +01:00
version = "3.7.1";
2017-06-12 10:15:19 +02:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:16 +01:00
sha256 = "ed845ac585f724ae1f40fdb517ed8ade822531f9bbcd1be4a599c2e86aff48a8";
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";
homepage = https://radimrehurek.com/gensim/;
2017-06-12 10:15:19 +02:00
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ jyp ];
2017-06-12 10:15:19 +02:00
};
}