24 lines
339 B
Nix
24 lines
339 B
Nix
|
{ stdenv, pytest, spacy_models }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "spacy-annotation-test";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
dontConfigure = true;
|
||
|
dontBuild = true;
|
||
|
doCheck = true;
|
||
|
|
||
|
checkInputs = [ pytest spacy_models.en_core_web_sm ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
pytest annotate.py
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
touch $out
|
||
|
'';
|
||
|
|
||
|
meta.timeout = 60;
|
||
|
}
|