easyconfigs-it4i/l/lxml/lxml-3.8.0-Python-2.7.13-base.eb
Lukáš Krupčík 92cb0848fe formatter
2018-10-03 07:48:02 +02:00

35 lines
855 B
Plaintext

easyblock = "PythonPackage"
name = 'lxml'
version = '3.8.0'
homepage = 'http://lxml.de/'
description = """The lxml XML toolkit is a Pythonic binding for the C libraries libxml2 and libxslt."""
toolchain = {'name': 'dummy', 'version': ''}
source_urls = ['http://lxml.de/files/']
sources = [SOURCE_TGZ]
python = 'Python'
pythonversion = '2.7.13'
pyshortver = '.'.join(pythonversion.split('.')[:2])
versionsuffix = "-%s-%s-base" % (python, pythonversion)
dependencies = [
(python, pythonversion, '-base'),
('libxml2', '2.9.4'),
('libxslt', '1.1.29'),
]
pylibdir = "lib/python%s/site-packages/%%(name)s" % pyshortver
sanity_check_paths = {
'files': [], 'dirs': [
('%s-%%(version)s-py%s.egg' %
(pylibdir, pyshortver), '%s-%%(version)s-py%s-linux-x86_64.egg' %
(pylibdir, pyshortver))], }
moduleclass = 'lib'