vtk: Include pythong bindings

This commit is contained in:
Tyson Whitehead
2019-12-20 15:36:35 -05:00
parent 0bbaae3038
commit d6e2d42354

View File

@@ -10,5 +10,10 @@ pkgs: self: super: with self; {
pybedtools = callPackage ./pybedtools.nix { };
vtk = disabledIf (!(pythonOlder "3.7")) ( toPythonModule ( pkgs.vtk.overrideAttrs ( attrs: {
cmakeFlags = attrs.cmakeFlags or [] ++ [ "-DVTK_WRAP_PYTHON:BOOL=ON" ];
buildInputs = attrs.buildInputs or [] ++ [ python ];
} ) ) );
xopen = callPackage ./xopen.nix { };
}