python3Packages.textdistance: enable tests

This commit is contained in:
Harinn
2026-07-24 20:55:30 +07:00
parent 6c91565ad2
commit 1d23401a4c
@@ -3,6 +3,9 @@
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
hypothesis,
numpy,
}:
buildPythonPackage (finalAttrs: {
@@ -20,8 +23,13 @@ buildPythonPackage (finalAttrs: {
build-system = [ setuptools ];
# There aren't tests
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
hypothesis
numpy
];
disabledTestPaths = [ "tests/test_external.py" ];
pythonImportsCheck = [ "textdistance" ];