Unverified Commit fbba1212 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents ded5ed4d 123c188e
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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