| I am trying to get nvidia-cusparse-cu12, part of my dependencies, to build. It is currently failing with auto-patchelf not able to resolve libnvJitLink.so.12. So I tried this override which has no effect. Am I missing something obvious?
python311.nvidia-cusparse-cu12 = super.python311.nvidia-cusparse-cu12.overridePythonAttrs (old: {
preferWheel = true;
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.cudaPackages.libnvjitlink ];
autoPatchelfIgnoreMissingDeps = [ "libnvJitLink.so.12" ];
});
|