Loading pkgs/development/python-modules/editdistpy/default.nix +25 −1 Original line number Diff line number Diff line Loading @@ -2,10 +2,16 @@ , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder , setuptools , cython_3 , symspellpy , numpy , editdistpy }: buildPythonPackage rec { Loading @@ -27,9 +33,27 @@ buildPythonPackage rec { cython_3 ]; # for tests need symspellpy package, symspellpy is not in nixpkgs... # error: infinite recursion encountered doCheck = false; nativeCheckInputs = [ pytestCheckHook symspellpy numpy ]; preCheck = '' rm -r editdistpy ''; passthru.tests = { check = editdistpy.overridePythonAttrs ( _: { doCheck = true; } ); }; pythonImportsCheck = [ "editdistpy" ]; Loading Loading
pkgs/development/python-modules/editdistpy/default.nix +25 −1 Original line number Diff line number Diff line Loading @@ -2,10 +2,16 @@ , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder , setuptools , cython_3 , symspellpy , numpy , editdistpy }: buildPythonPackage rec { Loading @@ -27,9 +33,27 @@ buildPythonPackage rec { cython_3 ]; # for tests need symspellpy package, symspellpy is not in nixpkgs... # error: infinite recursion encountered doCheck = false; nativeCheckInputs = [ pytestCheckHook symspellpy numpy ]; preCheck = '' rm -r editdistpy ''; passthru.tests = { check = editdistpy.overridePythonAttrs ( _: { doCheck = true; } ); }; pythonImportsCheck = [ "editdistpy" ]; Loading