mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
23 lines
352 B
Nix
23 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;
|
||
|
}
|
||
|
|