mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 03:38:05 +01:00
29 lines
779 B
Plaintext
29 lines
779 B
Plaintext
easyblock = 'PythonPackage'
|
|
|
|
name = 'paycheck'
|
|
version = '1.0.2'
|
|
|
|
homepage = 'https://pypi.python.org/pypi/paycheck/'
|
|
description = """PayCheck is a half-baked implementation of ScalaCheck, which itself is an implementation of QuickCheck for Haskell.
|
|
PayCheck is useful for defining a specification of what a function should do, rather than testing its results for a given input."""
|
|
|
|
toolchain = {'name': 'ictce', 'version': '5.3.0'}
|
|
|
|
source_urls = [PYPI_SOURCE]
|
|
sources = [SOURCE_TAR_GZ]
|
|
|
|
python = 'Python'
|
|
pyver = '2.7.3'
|
|
|
|
versionsuffix = '-%s-%s' % (python, pyver)
|
|
|
|
dependencies = [(python, pyver)]
|
|
|
|
pyshortver = '.'.join(pyver.split('.')[:2])
|
|
sanity_check_paths = {
|
|
'files': [],
|
|
'dirs': ['lib/python%s/site-packages/paycheck' % pyshortver],
|
|
}
|
|
|
|
moduleclass = 'devel'
|