spack/var/spack/repos/builtin/packages/py-bmtk/package.py
Erik Heeren 80e30222e1
New neuroscience packages: py-bmtk, py-neurotools (#34464)
* Add py-bmtk and py-neurotools

* py-bmtk: version bump

* [@spackbot] updating style on behalf of heerener

* Maybe the copyright needs to be extended to 2022 for the check to pass

* Process review remarks

* Update var/spack/repos/builtin/packages/py-neurotools/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2022-12-14 12:00:26 -06:00

29 lines
1.1 KiB
Python

# 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.package import *
class PyBmtk(PythonPackage):
"""The Brain Modeling Toolkit"""
homepage = "https://github.com/AllenInstitute/bmtk"
pypi = "bmtk/bmtk-1.0.5.tar.gz"
version("1.0.7", sha256="11e85098cf3c940a3d64718645f4a24ee13c8a47438ef5d28e054cb27ee01702")
version("1.0.5", sha256="e0cb47b334467a6d124cfb99bbc67cc88f39f0291f4c39929f50d153130642a4")
depends_on("py-setuptools", type="build")
depends_on("py-jsonschema", type=("build", "run"))
depends_on("py-pandas", type=("build", "run"))
depends_on("py-numpy", type=("build", "run"))
depends_on("py-six", type=("build", "run"))
depends_on("py-h5py", type=("build", "run"))
depends_on("py-matplotlib", type=("build", "run"))
depends_on("py-scipy", type=("build", "run"))
depends_on("py-scikit-image", type=("build", "run"))
depends_on("py-sympy", type=("build", "run"))