aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/spacy/annotation-test/default.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;
}