Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / spacy / annotation-test / default.nix
blob91ab0f33acaac34cb015bd73807292975d243d42
1 { stdenv, pytest, spacy-models }:
3 stdenv.mkDerivation {
4   name = "spacy-annotation-test";
6   src = ./.;
8   dontConfigure = true;
9   dontBuild = true;
10   doCheck = true;
12   nativeCheckInputs = [ pytest spacy-models.en_core_web_sm ];
14   checkPhase = ''
15     pytest annotate.py
16   '';
18   installPhase = ''
19     touch $out
20   '';
22   meta.timeout = 60;