summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-subunit/package.py
blob: 7c81ba1624f61de7eb6b7bd76cb6b63857c01ec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyPythonSubunit(PythonPackage):
    """Python implementation of subunit test streaming protocol."""

    homepage = "https://launchpad.net/subunit"
    pypi = "python-subunit/python-subunit-1.3.0.tar.gz"

    version("1.3.0", sha256="9607edbee4c1e5a30ff88549ce8d9feb0b9bcbcb5e55033a9d76e86075465cbb")

    depends_on("py-setuptools", type="build")
    depends_on("py-extras", type=("build", "run"))
    depends_on("py-testtools@0.9.34:", type=("build", "run"))