Anda dapat menggunakan geoalchemy2 yang merupakan ekstensi sqlalchemy dan dapat digunakan dengan flask-sqlalchemy juga.
from sqlalchemy import Column
from geoalchemy2 import Geometry
# and import others
class Shop(db.Model):
# other fields
coordinates = Column(Geometry('POINT'))