31 lines
1.4 KiB
Python
31 lines
1.4 KiB
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class PyElephant(PythonPackage):
|
|
"""Elephant is a package for analysis of electrophysiology data in Python
|
|
"""
|
|
|
|
homepage = "http://neuralensemble.org/elephant"
|
|
url = "https://pypi.io/packages/source/e/elephant/elephant-0.3.0.tar.gz"
|
|
|
|
version('0.4.1', sha256='86b21a44cbacdc09a6ba6f51738dcd5b42ecd553d73acb29f71a0be7c82eac81')
|
|
version('0.3.0', sha256='747251ccfb5820bdead6391411b5faf205b4ddf3ababaefe865f50b16540cfef')
|
|
|
|
variant('doc', default=False, description='Build the documentation')
|
|
variant('pandas', default=True, description='Build with pandas')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-neo@0.3.4:', type=('build', 'run')) # > 0.3.3 ?
|
|
depends_on('py-numpy@1.8.2:', type=('build', 'run'))
|
|
depends_on('py-quantities@0.10.1:', type=('build', 'run'))
|
|
depends_on('py-scipy@0.14.0:', type=('build', 'run'))
|
|
depends_on('py-pandas@0.14.1:', type=('build', 'run'), when='+pandas')
|
|
depends_on('py-numpydoc@0.5:', type=('build', 'run'), when='+docs')
|
|
depends_on('py-sphinx@1.2.2:', type=('build', 'run'), when='+docs')
|
|
depends_on('py-nose@1.3.3:', type='test')
|