depot/third_party/nixpkgs/pkgs/development/python-modules/vapoursynth/default.nix

23 lines
352 B
Nix
Raw Normal View History

{ vapoursynth, cython, buildPythonPackage, python }:
buildPythonPackage {
pname = "vapoursynth";
inherit (vapoursynth) version src;
nativeBuildInputs = [
cython
];
buildInputs = [
vapoursynth
];
checkPhase = ''
${python.interpreter} -m unittest discover -s $src/test -p "*test.py"
'';
inherit (vapoursynth) meta;
}