Můžete použít geoalchemy2 whis je rozšířením sqlalchemy a lze jej použít také s flask-sqlalchemy.
from sqlalchemy import Column
from geoalchemy2 import Geometry
# and import others
class Shop(db.Model):
# other fields
coordinates = Column(Geometry('POINT'))