Możesz użyć geoalchemy2 whis jest rozszerzeniem sqlalchemy i może być również używany z flask-sqlalchemy.
from sqlalchemy import Column
from geoalchemy2 import Geometry
# and import others
class Shop(db.Model):
# other fields
coordinates = Column(Geometry('POINT'))