QspinBox Desativar Python de roda

from PyQt5 import QtWidgets

box = QtWidgets.QSpinBox()
box.wheelEvent = lambda event: None
Yeti Wallhack