You'll have to use the 'n' locale-aware number format instead, and set your locale to one that uses a space as a thousands separator. Yes, this is painful.
'n' - Number. This is the same as 'd', except that it uses the current locale setting to insert the appropriate number separator characters.
Above gives 12.345,68 on my platform. Setting monetary to False or omitting it - Python does not group thousands.
Specifying locale._override_localeconv = {'thousands_sep': '.'} do nothing.
Variant C
If you don't have time to check what is working OK and what is broken with Python on your platform, you can just use regular string replace function (if you want to swap commas and dot to dots and comma):
Python community has it defined under PEP 378, where you can see that the main proposal includes format() function. So, by following that proposal, I suggest using the following: