depot/third_party/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/default.nix
Default email 657f08b14c Project import generated by Copybara.
GitOrigin-RevId: 807e9154dcb16384b1b765ebe9cd2bba2ac287fd
2024-10-29 11:11:06 +00:00

35 lines
453 B
Nix

{
lib,
stdenv,
pytest,
spacy-models,
}:
stdenv.mkDerivation {
name = "spacy-annotation-test";
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./annotate.py
];
};
dontConfigure = true;
dontBuild = true;
nativeCheckInputs = [
pytest
spacy-models.en_core_web_sm
];
checkPhase = ''
pytest annotate.py
'';
installPhase = ''
touch $out
'';
meta.timeout = 60;
}