depot/third_party/nixpkgs/pkgs/development/python-modules/vapoursynth/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

24 lines
374 B
Nix

{ vapoursynth, cython, buildPythonPackage, unittestCheckHook }:
buildPythonPackage {
pname = "vapoursynth";
inherit (vapoursynth) version src;
nativeBuildInputs = [
cython
];
buildInputs = [
vapoursynth
];
checkInputs = [
unittestCheckHook
];
unittestFlagsArray = [ "-s" "$src/test" "-p" "'*test.py'" ];
inherit (vapoursynth) meta;
}