dev-python/aiosmtplib: add 1.1.6 + docs + tests

Signed-off-by: Anna Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna Vyalkova
2021-05-24 14:53:32 +05:00
parent 0cb6a5ad89
commit 905cb3f0ee
2 changed files with 19 additions and 5 deletions

View File

@@ -1 +1 @@
DIST aiosmtplib-1.1.4.tar.gz 55375 BLAKE2B 0c08cb9d57acf82b10e41454dd705efe0ab965ab5dd5cc8627c4437da464b228d178ed414609a2c088982ed51a314ab03dfa1283562cab4f40212fe0fa6febc8 SHA512 5a453eaea3f04cd9d157516faa905dce3c863280f9980b2d84521c93423292487a73166e04123b7931b855f371508cf9b76ebf87e109ce0879a52b147e01b363
DIST aiosmtplib-1.1.6.tar.gz 55637 BLAKE2B e2f3ccf01fdd1e488d1159ad711325957fd9831c56561a58e2f0a67e42f28b295903bd046b4dddac6686b99753911f7eea9d882e5060a09687541b3ace716e26 SHA512 6a5d79e1c55b5fa5f8961ce2e52dff55ec440c32fae4a78543338fdcf045a92801b71b2d86999d338e300fbc1a385370786e103fc3c4630e81098c85f2f57ea1

View File

@@ -4,7 +4,7 @@
EAPI=7
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
PYTHON_COMPAT=( python3_{7,8} )
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
@@ -14,9 +14,23 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
KEYWORDS="~amd64"
DEPEND="dev-python/pyproject2setuppy"
RDEPEND="${DEPEND}"
DEPEND="
test? (
dev-python/aiosmtpd
dev-python/atpublic
dev-python/hypothesis
dev-python/pytest-asyncio
)
"
RESTRICT="mirror"
distutils_enable_tests pytest
distutils_enable_sphinx docs "dev-python/sphinx-autodoc-typehints"
python_test() {
epytest --event-loop=asyncio \
--deselect tests/test_connect.py::test_connect_via_socket_path
}