From 26e6aae8d471ac10a95b37b36fe355206c07a94b Mon Sep 17 00:00:00 2001 From: Ryan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com> Date: Wed, 8 Jun 2022 14:31:31 -0400 Subject: new package: py-pytest-asyncio (#31040) --- .../builtin/packages/py-pytest-asyncio/package.py | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-pytest-asyncio/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-pytest-asyncio/package.py b/var/spack/repos/builtin/packages/py-pytest-asyncio/package.py new file mode 100644 index 0000000000..6a72230569 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pytest-asyncio/package.py @@ -0,0 +1,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') -- cgit v1.2.3-60-g2f50