python3Packages.gensim: relax scipy dep, disable on 3.12 (#352711)

This commit is contained in:
Fabian Affolter
2024-11-01 22:18:55 +01:00
committed by GitHub
@@ -19,7 +19,8 @@ buildPythonPackage rec {
version = "4.3.3";
pyproject = true;
disabled = pythonOlder "3.8";
# C code generated with CPython3.12 does not work cython_0.
disabled = !(pythonOlder "3.12");
src = fetchPypi {
inherit pname version;
@@ -44,6 +45,10 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonRelaxDeps = [
"scipy"
];
pythonImportsCheck = [ "gensim" ];
# Test setup takes several minutes