summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pytest-asyncio/package.py
blob: 6a72230569cc8e1886b92fdd2972afe7eee10934 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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 PyPytestAsyncio(PythonPackage):
    """pytest-asyncio is an Apache2 licensed library, written in Python,
       for testing asyncio code with pytest."""

    homepage = "https://github.com/pytest-dev/pytest-asyncio"
    pypi     = "pytest-asyncio/pytest-asyncio-0.18.3.tar.gz"

    version('0.18.3', sha256='7659bdb0a9eb9c6e3ef992eef11a2b3e69697800ad02fb06374a210d85b29f91')
    version('0.9.0', sha256='fbd92c067c16111174a1286bfb253660f1e564e5146b39eeed1133315cf2c2cf')

    depends_on('python@3.7:', type=('build', 'run'), when='@0.18.3:')
    depends_on('python@3.5:', type=('build', 'run'), when='@0.9.0:')
    depends_on('py-setuptools@51.0:', type='build', when='@0.18.3:')
    depends_on('py-setuptools', type='build', when='@0.9.0:')
    depends_on('py-wheel@0.36:', type='build', when='@0.18.3:')
    depends_on('py-setuptools-scm@6.2:+toml', type='build', when='@0.18.3:')
    depends_on('py-pytest@6.1.0:', type=('build', 'run'), when='@0.18.3:')
    depends_on('py-pytest@3.0.6:', type=('build', 'run'), when='@0.9.0:')
    depends_on('py-typing-extensions@3.7.2:', type=('build', 'run'), when='@0.18.3:^python@:3.7')