gnu: python-psycopg2: Use postgresql@9.6.

* gnu/packages/python.scm (python-psycopg2)[inputs]: Replace postgresql
with postgresql@9.6.
This commit is contained in:
Efraim Flashner 2017-10-12 23:39:03 +03:00
parent 7658d89bb7
commit 4e169fc67a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -10829,7 +10829,7 @@ (define-public python-psycopg2
;; and a running postgresql database management service.
`(#:tests? #f)) ; TODO re-enable after providing a test-db.
(inputs
`(("postgresql" ,postgresql))) ; libpq
`(("postgresql" ,postgresql-9.6))) ; libpq
(home-page "http://initd.org/psycopg/")
(synopsis "Python PostgreSQL adapter")
(description