Skip to content
Snippets Groups Projects

Add NMPI client

2 files
+ 26
0
Compare changes
  • Side-by-side
  • Inline
Files
2
# 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 PyHbpNeuromorphicPlatform(PythonPackage):
"""Python client for the Human Brain Project Neuromorphic Computing Platform.
"""
homepage = "https://electronicvisions.github.io/hbp-sp9-guidebook/"
pypi = "hbp_neuromorphic_platform/hbp_neuromorphic_platform-0.9.2.tar.gz"
git = "https://github.com/HumanBrainProject/hbp-neuromorphic-client.git"
maintainers = ['apdavison']
version('0.9.2', sha256='b63b6b4b29a7bf720e456498e56cdbcfc72e704c1e08c409bec06cc1026f5bc0')
depends_on('python@3.5:')
depends_on('py-requests@2.20.0:', type=('build', 'run'))
depends_on('py-click@8.0.3:', type=('build', 'run'))
depends_on('py-pyyaml@6.0:', type=('build', 'run'))