Skip to content
Snippets Groups Projects
Commit 08a6e773 authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

fix+update py-morphio package

parent 8f2629cb
No related branches found
No related tags found
3 merge requests!318update branch,!317create new experimental release,!314add NeuroR
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other # Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details. # Spack Project Developers. See the top-level COPYRIGHT file for details.
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
#
# from https://github.com/BlueBrain/spack/blob/develop/bluebrain/repo-bluebrain/packages/py-morphio/package.py
from spack import * from spack.package import *
class PyMorphio(PythonPackage): class PyMorphio(PythonPackage):
"""MorphIO is a library for reading and writing neuron morphology files """Python library for reading / writing morphology files"""
"""
homepage = "https://github.com/BlueBrain/MorphIO"
git = "https://github.com/BlueBrain/MorphIO.git"
pypi = "morphio/MorphIO-3.3.2.tar.gz"
version("develop", branch="master", submodules=True)
version("unifurcation", branch="unifurcation", submodules=True)
homepage = "https://github.com/BlueBrain/MorphIO/" version("3.3.4", sha256="b70c6884e9b835560501f798c75c9cc7eaf3162cba1d930b5a9b854bb9ea60dc")
pypi = "MorphIO/MorphIO-3.1.1.tar.gz" version("3.3.3", sha256="f6d91970cfd734b2e5fb8f9239a0bfa00519fe082dd8e403e4cc204dbdf0a9fa")
git = "https://github.com/BlueBrain/MorphIO.git" version("3.3.2", sha256="fc961defbfbfb3f11360954fb3ec51373eaff25b154fa31d6b31decca6937780")
version("3.1.1", sha256="ad9f0e363f09f03c6eda54f5f3b006d204236677d2f2c9675421e0441033a503")
version("2.7.1", sha256="3f3e2229da85e874527775fce080f712b6dc287edc44b90b6de35d17b34badff")
version('3.1.1', sha256='ad9f0e363f09f03c6eda54f5f3b006d204236677d2f2c9675421e0441033a503') depends_on("py-setuptools", type="build")
depends_on("py-setuptools-scm", type="build")
depends_on('python@3.6.9:') depends_on("ninja", type="build")
depends_on('py-numpy@1.14.1:', type=('build', 'run')) depends_on("cmake@3.2:", type="build")
depends_on('py-h5py@3.0:4.0', type=('build', 'run')) depends_on("py-numpy@1.14.1:", type="run")
depends_on("hdf5")
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