python310Packages.monai: unbreak

Upstream added a `monai[ninja]` install option and a corresponding
`ninja = ` in `setup.cfg`, which broke a previous hack around
`setuptools` not detecting `ninja` correctly.
This commit is contained in:
Ben Darwin 2022-12-12 01:17:10 -05:00 committed by Frederik Rietdijk
parent f91966e165
commit dd793645a8

View file

@ -24,7 +24,7 @@ buildPythonPackage rec {
# Ninja is not detected by setuptools for some reason even though it's present:
postPatch = ''
substituteInPlace "setup.cfg" --replace "ninja" ""
substituteInPlace "setup.cfg" --replace " ninja" ""
'';
preBuild = ''