New package: bueno (#31374)
This commit is contained in:
parent
43654078fc
commit
4a6b447465
1 changed files with 26 additions and 0 deletions
26
var/spack/repos/builtin/packages/bueno/package.py
Normal file
26
var/spack/repos/builtin/packages/bueno/package.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# 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 Bueno(PythonPackage):
|
||||
"""Bueno: Well-Provenanced Benchmarking"""
|
||||
|
||||
homepage = "https://lanl.github.io/bueno"
|
||||
url = "https://github.com/lanl/bueno/archive/refs/tags/v0.0.1.tar.gz"
|
||||
git = "https://github.com/lanl/bueno.git"
|
||||
|
||||
maintainers = ['rbberger']
|
||||
|
||||
version("master", branch="master")
|
||||
|
||||
depends_on('python@3.7:', type=('build', 'run'))
|
||||
|
||||
depends_on("py-pyyaml", type=('build', 'run'))
|
||||
depends_on("py-lark@1.0.0", type=('build', 'run'))
|
||||
depends_on("py-pika@1.2.0", type=('build', 'run'))
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
Loading…
Reference in a new issue