aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/default.nix
blob: 1b066ff3c39da44993daee19a6735d2f62fcf618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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;
}