-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport releases/v0.20] py-epic-capybara: new package (#577)
# Description Backport of #576 to `releases/v0.20`. --------- Co-authored-by: Wouter Deconinck <[email protected]>
- Loading branch information
1 parent
ad3c491
commit 8b2e44f
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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("[email protected]:", 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")) |