aiogram-3.3.0.ebuild

This commit is contained in:
Anton Bolshakov 2024-01-01 16:53:26 +08:00
parent e003306673
commit a6b0e11aef
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
2 changed files with 60 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST aiogram-3.2.0.tar.gz 1199545 BLAKE2B 98426f4a6e95172acd3792a462bc6948de35b1565314ce47bfeed505a533a54a659747596ce0b38202cfc82ad65d2c787c8f688fecad6cbddb213b2460054a90 SHA512 64ca9ddac6d0d4c0637c7d7939e2df41174d5e3e8ed505d161dd2d7cc9e0e8d28d1516fd0923f8dbfd9ff2a599f578e6f5af8c97c62b8c96b073891cf5b8d916
DIST aiogram-3.3.0.tar.gz 1244474 BLAKE2B 6962571b36650fe2f66fb79f61390d3b22f0308f6ebc4666c4aa6c0ac8cc6ec920ac8fd6a0c3fef08396c6098ac2a1a28c3137ddae45863e9c67e490e642655d SHA512 a3972a628b2df6cde7365b95a431eb9f3af56ade4176a2747f87ba1ec3a18cbf66b07c6949deb0a8eaadfa41e16a75d65971fd6d0c1f9e3582dede27bbae1fe5

View file

@ -0,0 +1,59 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous framework for Telegram Bot API"
HOMEPAGE="https://github.com/aiogram/aiogram"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="docs i18n fast proxy redis"
RESTRICT="test"
RDEPEND="
>=dev-python/magic-filter-1.0.12[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.9.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-2.4.1[${PYTHON_USEDEP}] <dev-python/pydantic-2.6
>=dev-python/aiofiles-23.2.1[${PYTHON_USEDEP}]
>=dev-python/certifi-2023.7.22[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.7.0[${PYTHON_USEDEP}]
fast? (
>=dev-python/uvloop-0.17.0[${PYTHON_USEDEP}]
>=dev-python/aiodns-3.0.0[${PYTHON_USEDEP}]
)
i18n? ( >=dev-python/Babel-2.13.0[${PYTHON_USEDEP}] )
proxy? ( >=dev-python/aiohttp-socks-0.8.3[${PYTHON_USEDEP}] )
redis? ( >=dev-python/redis-5.0.1 )
docs? (
dev-python/sphinx
dev-python/furo
dev-python/sphinx-prompt
dev-python/towncrier
dev-python/pymdown-extensions
dev-python/pygments
)"
DEPEND="${RDEPEND}"
#BDEPEND="
# test? (
# dev-python/redis-py[${PYTHON_USEDEP}]
# dev-python/magic-filter[${PYTHON_USEDEP}]
# dev-python/aiofiles[${PYTHON_USEDEP}]
# dev-python/aiohttp[${PYTHON_USEDEP}]
# )
#"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
# from aresponses import ResponsesMockServer
# ModuleNotFoundError: No module named 'aresponses'
#distutils_enable_tests pytest
#S="${WORKDIR}/${MY_P}"