Skip to content
Snippets Groups Projects
Commit be54019c authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

fix(py-pytest-benchmark): add missing dependency

parent 2860429f
No related branches found
No related tags found
No related merge requests found
# 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 PyPytestBenchmark(PythonPackage):
"""A pytest fixture for benchmarking code."""
homepage = "https://github.com/ionelmc/pytest-benchmark"
pypi = "pytest-benchmark/pytest-benchmark-3.2.3.tar.gz"
license("BSD-2-Clause")
version("3.2.3", sha256="ad4314d093a3089701b24c80a05121994c7765ce373478c8f4ba8d23c9ba9528")
depends_on("python@2.7:2.8,3.5:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pytest@3.8:", type=("build", "run"))
depends_on("py-py-cpuinfo", type=("build", "run"))
# begin EBRAINS (added)
depends_on("py-py@1.8.2:", type=("build", "run"))
# end EBRAINS
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment