mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
25 lines
683 B
Bash
25 lines
683 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python3_{5,6} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Pytest support for asyncio"
|
|
HOMEPAGE="https://github.com/pytest-dev/pytest-asyncio"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="Apache-2.0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="test"
|
|
|
|
RDEPEND=">=dev-python/pytest-3.0.6[${PYTHON_USEDEP}]"
|
|
# >=dev-python/async_generator-1.3[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
test? ( dev-python/coverage[${PYTHON_USEDEP}]
|
|
>=dev-python/async_generator-1.3[${PYTHON_USEDEP}]
|
|
)"
|