mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
python310Packages.gensim:disable on older Python releases
- fix license - update inputs - add pythonImportsCheck
This commit is contained in:
parent
a1337c5d1f
commit
6870929ad1
@ -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
|
||||
];
|
||||
|
||||
checkInputs = [ scikit-learn testfixtures unittest2 ];
|
||||
propagatedBuildInputs = [
|
||||
smart-open
|
||||
numpy
|
||||
scipy
|
||||
];
|
||||
|
||||
# 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
|
||||
checkInputs = [
|
||||
mock
|
||||
pyemd
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
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…
Reference in New Issue
Block a user