30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# Copyright 2013-2024 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.package import *
|
|
|
|
|
|
class PyBluepyefe(PythonPackage):
|
|
"""Blue Brain Python E-feature extraction"""
|
|
|
|
homepage = "https://github.com/BlueBrain/BluePyEfe"
|
|
pypi = "bluepyefe/bluepyefe-2.2.18.tar.gz"
|
|
git = "https://github.com/BlueBrain/BluePyEfe.git"
|
|
|
|
version("2.3.6", sha256="e52117372c41bfa3796e7a340d04b9c4b14f9ebcaacb9d36e947f3d041eb7e35")
|
|
version("2.2.18", sha256="bfb50c6482433ec2ffb4b65b072d2778bd89ae50d92dd6830969222aabb30275")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
|
|
depends_on("py-numpy", type=("build", "run"))
|
|
depends_on("py-neo", type=("build", "run"))
|
|
depends_on("py-matplotlib", type=("build", "run"))
|
|
depends_on("py-efel", type=("build", "run"))
|
|
depends_on("py-scipy", type=("build", "run"))
|
|
depends_on("py-h5py", type=("build", "run"))
|
|
depends_on("py-igor2", type=("build", "run"), when="@2.3.6:")
|
|
|
|
depends_on("py-numpy@:1.23", type=("build", "run"), when="@2.2.18")
|
|
depends_on("py-igor", type=("build", "run"), when="@2.2.18")
|