From 8b2e44fe14328f5bad0573cab5c23a6a41e217e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 18:44:15 -0500 Subject: [PATCH] [Backport releases/v0.20] py-epic-capybara: new package (#577) # Description Backport of #576 to `releases/v0.20`. --------- Co-authored-by: Wouter Deconinck --- packages/py-epic-capybara/package.py | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 packages/py-epic-capybara/package.py diff --git a/packages/py-epic-capybara/package.py b/packages/py-epic-capybara/package.py new file mode 100644 index 00000000..31e34f50 --- /dev/null +++ b/packages/py-epic-capybara/package.py @@ -0,0 +1,31 @@ +# Copyright 2013-2023 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) + + +class PyEpicCapybara(PythonPackage): + """Scripts for ROOT file comparisons.""" + + homepage = "https://github.com/eic/epic-capybara" + url = "https://github.com/eic/epic-capybara" + git = "https://github.com/eic/epic-capybara.git" + + tags = ["eic"] + + maintainers("veprbl") + + license("MIT") + + version("main", branch="main") + + depends_on("python@3.7:", type=("build", "run")) + depends_on("py-hatchling", type="build") + + depends_on("py-awkward", type=("build", "run")) + depends_on("py-bokeh", type=("build", "run")) + depends_on("py-click", type=("build", "run")) + depends_on("py-hist", type=("build", "run")) + depends_on("py-pygithub", type=("build", "run")) + depends_on("py-requests", type=("build", "run")) + depends_on("py-uproot", type=("build", "run"))