vapoursynth: Add to pythonPackages (#175770)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
cid-chan 2 years ago committed by GitHub
parent cdb6dc2928
commit 2c1c79dce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      pkgs/development/python-modules/vapoursynth/default.nix
  2. 4
      pkgs/top-level/python-packages.nix

@ -0,0 +1,22 @@
{ 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;
}

@ -11000,6 +11000,10 @@ in {
vallox-websocket-api = callPackage ../development/python-modules/vallox-websocket-api { };
vapoursynth = callPackage ../development/python-modules/vapoursynth {
inherit (pkgs) vapoursynth;
};
variants = callPackage ../development/python-modules/variants { };
varint = callPackage ../development/python-modules/varint { };

Loading…
Cancel
Save