about summary refs log tree commit diff
path: root/pkgs/development/python-modules/vapoursynth/default.nix
blob: ec88f244aee62d8468f123903435bf05872fd6f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ vapoursynth, cython, buildPythonPackage, unittestCheckHook }:

buildPythonPackage {
  pname = "vapoursynth";

  inherit (vapoursynth) version src;

  nativeBuildInputs = [
    cython
  ];

  buildInputs = [
    vapoursynth
  ];

  checkInputs = [
    unittestCheckHook
  ];

  unittestFlagsArray = [ "-s" "$src/test" "-p" "'*test.py'" ];

  inherit (vapoursynth) meta;
}