Skip to content
Snippets Groups Projects

Draft: feat: add py-cobrawap package

Closed Eleni Mathioulaki requested to merge elmath/ebrains-spack-builds:add-cobrawap into master
2 files
+ 41
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 40
0
 
# 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 PyCobrawap(PythonPackage):
 
"""Collaborative Brain Wave Analysis Pipeline (Cobrawap)"""
 
 
homepage = "https://cobrawap.readthedocs.io/en/latest/"
 
pypi = "cobrawap/cobrawap-0.2.0.tar.gz"
 
 
maintainers("lupoc")
 
 
version("0.2.0", sha256="5ee0dc064d60b95dde75f693817b2b59c1de3601ba19b7d70dae240da14d71d2")
 
 
depends_on("python@3.8:", type=("build", "run"))
 
 
depends_on("py-setuptools", type="build")
 
depends_on("py-flit-core@3.2:3", type="build")
 
 
depends_on("py-ruamel-yaml@0.18.3:", type=("build", "run"))
 
depends_on("py-jinja2@2.10.3:", type=("build", "run"))
 
depends_on("py-scipy@1.7.3:", type=("build", "run"))
 
depends_on("py-pygments@2.4.2:", type=("build", "run"))
 
# depends_on("py-snakemake@7.10:7", type=("build", "run"))
 
depends_on("py-h5py", type=("build", "run"))
 
depends_on("py-shapely", type=("build", "run"))
 
depends_on("py-elephant@1:", type=("build", "run"))
 
depends_on("py-neo@0.10.2:0.11", type=("build", "run"))
 
depends_on("py-nixio@1.5.3:", type=("build", "run"))
 
depends_on("py-pillow@7:", type=("build", "run"))
 
depends_on("py-pandas@1.2:", type=("build", "run"))
 
depends_on("py-scikit-learn@1.1:", type=("build", "run"))
 
depends_on("py-scikit-image@0.20:", type=("build", "run"))
 
depends_on("py-matplotlib@3.5.1:", type=("build", "run"))
 
depends_on("py-seaborn", type=("build", "run"))
 
depends_on("py-networkx", type=("build", "run"))