What you want is to order the role attribute of the RolePermission object. Passing order_by sets the order in the Role class.
Try this:
from sqlalchemy.orm import backref
permissionLinks = relationship(RolePermission, backref=backref("role", order_by=name))
setting an order for the back reference