Select Git revision
Forked from
EBRAINS RI / Tech Hub / Platform / EBRAINS Software Distribution / ebrains-spack-builds
1074 commits behind the upstream repository.
#31)
Eleni Mathioulaki authored
package.py 2.28 KiB
# Copyright 2013-2022 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 PyNeo(PythonPackage):
"""Neo is a package for representing electrophysiology data in Python,
together with support for reading a wide range of neurophysiology
file formats"""
homepage = "https://neuralensemble.org/neo"
pypi = "neo/neo-0.4.1.tar.gz"
# temporary fix to avoid building with py-setuptools@:61, that doesn't support PEP 621
version('0.12.0', sha256='758f1938b6e3d1a21e465265e6859dc925cc1f0a4a347658cd4bc6293b99545d',
url='https://pypi.io/packages/py3/n/neo/neo-0.12.0-py3-none-any.whl', expand=False)
# version('0.12.0', sha256='3b6ca4fc05dfdb4e953e253e70994bfbbc8fe2e90958fbda7fa5860caf3fa63a')
version('0.11.1', sha256='f4a206044b332ad00b10072b0dc7a70b359fa365ec786f92ab757ef4ae588474')
version('0.11.0', sha256='cdf8e1324a3fbbd1efd5618dcd37cfc497b1997923bd710b598472c1d846674a')
version('0.10.2', sha256='2d4218b0826daeea880e155227060029ec38a00238ceb5f097138d9467c6399b')
version('0.10.0', sha256='e591a53e18cfa4478603a0e133f3fa0e07bc016b2a279d21d72cf8196eca8353')
version('0.9.0', sha256='6e31c88d7c52174fa2512df589b2b5003e9471fde27fca9f315f4770ba3bd3cb')
version('0.8.0', sha256='3382a37b24a384006238b72981f1e9259de9bfa71886f8ed564d35d254ace458')
version('0.5.2', sha256='1de436b7d5e72a5b4f1baa68bae5b790624a9ac44b2673811cb0b6ef554d3f8b')
depends_on('py-setuptools', type='build')
depends_on('py-packaging', type=('build', 'run'))
depends_on('py-numpy@1.7.1:', type=('build', 'run'), when='@0.5.2:0.8.0')
depends_on('py-numpy@1.13.0:', type=('build', 'run'), when='@0.9.0')
depends_on('py-numpy@1.16.1:', type=('build', 'run'), when='@0.10.0:0.10.2')
depends_on('py-numpy@1.18.5:', type=('build', 'run'), when='@0.11.0:')
depends_on('py-quantities@0.9.0:', type=('build', 'run'), when='@0.5.2:0.8.0')
depends_on('py-quantities@0.12.1:', type=('build', 'run'), when='@0.9.0:')
depends_on('py-scipy@0.12.0:', type=('build', 'run'), when='@0.5.2:0.8.0')
depends_on('py-scipy@1.0.0:', type=('build', 'run'), when='@0.9.0:')