mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
2c1c79dce6
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
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;
|
|
}
|
|
|