python310Packages.gensim:disable on older Python releases

- fix license
- update inputs
- add pythonImportsCheck
main
Fabian Affolter 2 years ago committed by GitHub
parent a1337c5d1f
commit 6870929ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 55
      pkgs/development/python-modules/gensim/default.nix

@ -1,43 +1,60 @@
{ lib
, buildPythonPackage
, cython
, fetchPypi
, mock
, numpy
, six
, scipy
, smart-open
, scikit-learn, testfixtures, unittest2
, isPy3k
, testfixtures
, pyemd
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "gensim";
version = "4.2.0";
disabled = !isPy3k;
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-mV69KXCjHUfBAKqsECEvR+K/EuKwZTbTiIPJUf807vE=";
hash = "sha256-mV69KXCjHUfBAKqsECEvR+K/EuKwZTbTiIPJUf807vE=";
};
propagatedBuildInputs = [ smart-open numpy six scipy ];
nativeBuildInputs = [
cython
];
propagatedBuildInputs = [
smart-open
numpy
scipy
];
checkInputs = [ scikit-learn testfixtures unittest2 ];
checkInputs = [
mock
pyemd
pytestCheckHook
];
# 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
pythonImportsCheck = [
"gensim"
];
# Test setup takes several minutes
doCheck = false;
meta = {
pytestFlagsArray = [
"gensim/test"
];
meta = with lib; {
description = "Topic-modelling library";
homepage = "https://radimrehurek.com/gensim/";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ jyp ];
license = licenses.lgpl21Only;
maintainers = with maintainers; [ jyp ];
};
}

Loading…
Cancel
Save