889482aab3
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
22 lines
352 B
Nix
22 lines
352 B
Nix
{ 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;
|
|
}
|
|
|