diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix index 8c76a932c8bd..fef2482b2661 100644 --- a/pkgs/development/python-modules/spacy/default.nix +++ b/pkgs/development/python-modules/spacy/default.nix @@ -113,6 +113,11 @@ buildPythonPackage rec { "test_download_compatibility" "test_validate_compatibility_table" "test_project_assets" + "test_find_available_port" + + # Tests for presence of outdated (and thus missing) spacy models + # https://github.com/explosion/spaCy/issues/13856 + "test_registry_entries" ]; pythonImportsCheck = [ "spacy" ]; @@ -137,12 +142,14 @@ buildPythonPackage rec { tests.annotation = callPackage ./annotation-test { }; }; + __darwinAllowLocalNetworking = true; # needed for test_find_available_port + meta = { description = "Industrial-strength Natural Language Processing (NLP)"; homepage = "https://github.com/explosion/spaCy"; changelog = "https://github.com/explosion/spaCy/releases/tag/release-v${version}"; license = lib.licenses.mit; - maintainers = [ ]; + maintainers = with lib.maintainers; [ sarahec ]; mainProgram = "spacy"; }; }