py-psycopg2: need link dep on postgresql (#24016)

This commit is contained in:
Adam J. Stewart 2021-06-01 03:00:35 -05:00 committed by GitHub
parent 26e1a8287f
commit c596dba039
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,13 +9,14 @@
class PyPsycopg2(PythonPackage):
"""Python interface to PostgreSQL databases"""
homepage = "http://initd.org/psycopg/"
url = "http://initd.org/psycopg/tarballs/PSYCOPG-2-7/psycopg2-2.7.5.tar.gz"
homepage = "https://psycopg.org/"
pypi = "psycopg2/psycopg2-2.8.6.tar.gz"
version('2.8.6', sha256='fb23f6c71107c37fd667cb4ea363ddeb936b348bbd6449278eb92c189699f543')
version('2.7.5', sha256='eccf962d41ca46e6326b97c8fe0a6687b58dfc1a5f6540ed071ff1474cea749e')
depends_on('python@2.7:2.8,3.4:3.8', type=('build', 'run'), when='@2.8:')
depends_on('python@2.6:2.8,3.2:3.7', type=('build', 'run'), when='@2.7')
# https://www.psycopg.org/docs/install.html#prerequisites
depends_on('python@2.7:2.8,3.4:3.8', type=('build', 'link', 'run'), when='@2.8:')
depends_on('python@2.6:2.8,3.2:3.7', type=('build', 'link', 'run'), when='@2.7')
depends_on('py-setuptools', type='build')
depends_on('postgresql', type=('build', 'run'))
depends_on('postgresql@9.1:12', type=('build', 'link', 'run'))