summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-flaky/package.py
blob: 7f83219c3286b3aa95dad083877c70c2c20e5bd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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)

from spack.package import *


class PyFlaky(PythonPackage):
    """Flaky is a plugin for nose or pytest that automatically reruns flaky tests."""

    homepage = "https://github.com/box/flaky"
    pypi = "flaky/flaky-3.7.0.tar.gz"

    version("3.7.0", sha256="3ad100780721a1911f57a165809b7ea265a7863305acb66708220820caf8aa0d")

    depends_on("py-setuptools", type=("build"))