mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 02:41:22 +01:00
35 lines
855 B
Plaintext
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'
|