In 2.x struct is available as ustruct. We need to make sure all drivers included in the bundle will work with 3.x which has renamed it to struct.
For backwards compatiblity it should be:
try:
import struct
except ImportError:
import ustruct as struct