Как мне подключиться к Postgresql, используя SSL от SqlAchemy + pg8000?

Подключение к postgres через pg8000 из SqlAlchemy работало нормально, пока я не включил SSL на postgres.

db = create_engine('postgresql+pg8000://user:pass@hostname/dbname', echo=True).connect()

Теперь, похоже, с ошибкой:

File "/Library/Python/2.7/site-packages/pg8000/core.py", line 872, in __init__
raise InterfaceError("communication error", exc_info()[1])
sqlalchemy.exc.InterfaceError: (InterfaceError) ('communication error', error(61, 'Connection refused')) None None