mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 02:12:12 +01:00
35 lines
966 B
Plaintext
35 lines
966 B
Plaintext
easyblock = "PythonPackage"
|
|
|
|
name = 'sympy'
|
|
version = '0.7.6'
|
|
|
|
homepage = 'http://sympy.org/'
|
|
description = """SymPy is a Python library for symbolic mathematics. It aims to
|
|
become a full-featured computer algebra system (CAS) while keeping the code as
|
|
simple as possible in order to be comprehensible and easily extensible. SymPy
|
|
is written entirely in Python and does not require any external libraries."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2015b'}
|
|
|
|
source_urls = ['https://github.com/sympy/sympy/releases/download/sympy-%(version)s/']
|
|
sources = [SOURCE_TAR_GZ]
|
|
|
|
python = "Python"
|
|
pythonversion = '2.7.9'
|
|
pythonshortversion = '.'.join(pythonversion.split('.')[:-1])
|
|
|
|
versionsuffix = "-%s-%s" % (python, pythonversion)
|
|
|
|
dependencies = [(python, pythonversion)]
|
|
|
|
runtest = 'python setup.py test'
|
|
|
|
sanity_check_paths = {
|
|
'files': [],
|
|
'dirs': ['lib/python%s/site-packages/sympy' % pythonshortversion],
|
|
}
|
|
|
|
skipsteps = ['test']
|
|
|
|
moduleclass = 'math'
|