Du kan använda geoalchemy2 whis är en förlängning av sqlalchemy och kan också användas med flask-sqlalchemy.
from sqlalchemy import Column
from geoalchemy2 import Geometry
# and import others
class Shop(db.Model):
# other fields
coordinates = Column(Geometry('POINT'))