Skip to content
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# easybuild easyconfig
#
# John Dey <[email protected]>
#
# Fred Hutchinson Cancer Center - Seattle Washington - US
#
easyblock = 'PythonPackage'

name = 'spektral'
version = '1.1.0'
versionsuffix = '-CUDA-%(cudaver)s'

homepage = 'https://github.com/danielegrattarola/spektral'
description = """Spektral is a Python library for graph deep learning. The main goal of this
project is to provide a simple but flexible framework for creating graph neural networks (GNNs)."""

toolchain = {'name': 'foss', 'version': '2021b'}

sources = [SOURCE_TAR_GZ]
checksums = ['3b73549f213f0d36a0bf67595aa3c4d84efb8e0e40d71aeaa1d78ea896245222']

dependencies = [
('Python', '3.9.6'),
('lxml', '4.6.3'),
('SciPy-bundle', '2021.10'),
('networkx', '2.6.3'),
('tqdm', '4.62.3'),
('scikit-learn', '1.0.1'),
('CUDA', '11.4.1', '', SYSTEM),
('TensorFlow', '2.7.1', versionsuffix),
]

download_dep_fail = True
use_pip = True
sanity_pip_check = True

moduleclass = 'lib'