Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{lib}[GCCcore/11.2.0] psycopg2 v2.9.5 w/ Python 3.9.6 #17256

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions easybuild/easyconfigs/p/psycopg2/psycopg2-2.9.5-GCCcore-11.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Author: Pavel Grochal (INUITS)
# License: GPLv2

easyblock = 'PythonPackage'

name = 'psycopg2'
version = '2.9.5'

homepage = 'https://psycopg.org/'
description = "Psycopg is the most popular PostgreSQL adapter for the Python programming language."

toolchain = {'name': 'GCCcore', 'version': '11.2.0'}

sources = [SOURCE_TAR_GZ]
checksums = ['a5246d2e683a972e2187a8714b5c2cf8156c064629f9a9b1a873c1730d9e245a']

builddependencies = [
('binutils', '2.37'),
]

dependencies = [
('Python', '3.9.6'),
('PostgreSQL', '13.4'),
]

download_dep_fail = True
use_pip = True
sanity_pip_check = True

branfosj marked this conversation as resolved.
Show resolved Hide resolved
sanity_check_paths = {
'files': [],
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s'],
}

moduleclass = 'lib'