Skip to content
Snippets Groups Projects
Commit 6b3233cd authored by Athanasios Karmas's avatar Athanasios Karmas
Browse files

Merge branch 'cerebunit_cerebstats' into 'master'

Cerebunit cerebstats

See merge request technical-coordination/project-internal/devops/platform/ebrains-spack-builds!59
parents c565c3ea dd92c821
No related branches found
No related tags found
1 merge request!59Cerebunit cerebstats
Pipeline #16693 canceled with stage
in 4 seconds
# Copyright 2013-2021 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 PyCerebstats(PythonPackage):
"""CerebStats is the statistical library for CerebUnit.
It is one of the four components for validating cerebellum models:
CerebModels and CerebData do not require installation while CerebUnit and CerebStats require installation."""
homepage = "https://cerebstats.readthedocs.io"
pypi = "cerebstats/cerebstats-0.0.3.tar.gz"
git = "https://github.com/cerebunit/cerebstats.git"
maintainers = ['lungsi', 'apdavison'] # github usernames
version('0.0.3', sha256='0270ac7d37706d067e5e72de80f6dbd23309ec02a71ad4443f0f457790a9aa8c')
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-quantities', type='build', 'run')
depends_on('py-sciunit', type=('build', 'run'))
# Copyright 2013-2021 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 PyCerebunit(PythonPackage):
"""CerebUnit is a component for validating cerebellum models that contains the validation tests.
It is one of the four components for validating cerebellum models:
CerebModels and CerebData do not require installation while CerebUnit and CerebStats require installation."""
homepage = "https://cerebunit.readthedocs.io"
pypi = "cerebunit/cerebunit-0.0.1.tar.gz"
git = "https://github.com/cerebunit/cerebunit.git"
maintainers = ['lungsi', 'apdavison'] # github usernames
version('0.0.1', sha256='f5b3811c5da2e8416a30a67497b90c87cba176493662e73f2191f1375a6d7bfe')
depends_on('py-cerebstats', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-quantities', type='build', 'run')
depends_on('py-sciunit', type=('build', 'run'))
depends_on('py-pynwb@1.0.2', type=('build', 'run'))
depends_on('py-hdmf@1.0.3', type=('build', 'run'))
depends_on('py-h5py', type=('build', 'run'))
depends_on('py-pandas', type=('build', 'run'))
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment