That's a fair point ;). I eyeballed the code and I can't see how it exports NP_GetEntryPoints, NP_Initialize and NP_Shutdown, which is necessary on Windows. Feel free to file a bug on the issues page.
The right way to fix it:
I think it needs to incorporate a .def file with these exports, like the one in complex/complex.def. Then the linker needs a /DEF:helloworld.def added to the command line. I've never attempted that in scons.
The easy way to fix it:
Add __declspec(dllexport) to these three functions in nixysa/static_glue/npapi/main.cc. See
http://msdn.microsoft.com/en-us/library/a90k134d.aspx.
Thanks
Al