summary refs log tree commit diff
path: root/pkgs/development/python-modules/spacy
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2020-12-12 11:38:39 +0100
committerDaniël de Kok <me@danieldk.eu>2020-12-15 06:51:19 +0100
commit57f858d61e650b2b02163b30d57262a167f2ffbb (patch)
tree350628af72017eb6ffdb59c52a4e9884555830df /pkgs/development/python-modules/spacy
parent9edd8887d871b57c5eeed0d846a8f0544463fd8c (diff)
downloadnixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.tar
nixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.tar.gz
nixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.tar.bz2
nixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.tar.lz
nixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.tar.xz
nixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.tar.zst
nixpkgs-57f858d61e650b2b02163b30d57262a167f2ffbb.zip
python3Packages.spacy: passthru.tests should be an attrset
Diffstat (limited to 'pkgs/development/python-modules/spacy')
-rw-r--r--pkgs/development/python-modules/spacy/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix
index f8594b8856b..e13127abeb3 100644
--- a/pkgs/development/python-modules/spacy/default.nix
+++ b/pkgs/development/python-modules/spacy/default.nix
@@ -65,7 +65,7 @@ buildPythonPackage rec {
 
   pythonImportsCheck = [ "spacy" ];
 
-  passthru.tests = callPackage ./annotation-test { };
+  passthru.tests.annotation = callPackage ./annotation-test { };
 
   meta = with lib; {
     description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";