Apply tensorflow override to tensorflow-macos

In both cases, the `tensorboard` executable conflicts with that from
`tensorboard` itself.
This commit is contained in:
David Baynard 2022-11-02 20:00:54 +00:00
parent 5cceec71b3
commit 9b3277a048

View file

@ -2229,6 +2229,14 @@ lib.composeManyExtensions [
}
);
tensorflow-macos = super.tensorflow-macos.overridePythonAttrs (
old: {
postInstall = ''
rm $out/bin/tensorboard
'';
}
);
tensorpack = super.tensorpack.overridePythonAttrs (
old: {
postPatch = ''