nixpkgs/pkgs/development/python-modules/vapoursynth/default.nix
cid-chan 2c1c79dce6
vapoursynth: Add to pythonPackages (#175770)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-06-26 01:00:23 +02:00

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;
}