summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-asynctest/package.py
blob: 9fd0d10e10a6a4f24414edc7fa7f7860b8d86eed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyAsynctest(PythonPackage):
    """The package asynctest is built on top of the standard unittest module
    and cuts down boilerplate code when testing libraries for asyncio."""

    homepage = "https://asynctest.readthedocs.io"
    pypi     = "asynctest/asynctest-0.13.0.tar.gz"

    version('0.13.0', sha256='c27862842d15d83e6a34eb0b2866c323880eb3a75e4485b079ea11748fd77fac')

    depends_on('python@3.5:', type=('build', 'run'))
    depends_on('py-setuptools@30.3:', type='build')