File indexing completed on 2025-01-18 09:15:27
0001
0002
0003
0004
0005
0006 from spack.package import *
0007
0008
0009 class PyEpicCapybara(PythonPackage):
0010 """Scripts for ROOT file comparisons."""
0011
0012 homepage = "https://github.com/eic/epic-capybara"
0013 url = "https://github.com/eic/epic-capybara"
0014 git = "https://github.com/eic/epic-capybara.git"
0015
0016 tags = ["eic"]
0017
0018 maintainers("veprbl")
0019
0020 license("MIT")
0021
0022 version("main", branch="main")
0023
0024 depends_on("python@3.7:", type=("build", "run"))
0025 depends_on("py-hatchling", type="build")
0026
0027 depends_on("py-awkward", type=("build", "run"))
0028 depends_on("py-bokeh", type=("build", "run"))
0029 depends_on("py-click", type=("build", "run"))
0030 depends_on("py-hist", type=("build", "run"))
0031 depends_on("py-pygithub", type=("build", "run"))
0032 depends_on("py-requests", type=("build", "run"))
0033 depends_on("py-scipy", type=("build", "run"))
0034 depends_on("py-uproot", type=("build", "run"))