mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
aiogram-2.22.1.ebuild
This commit is contained in:
parent
3a5681c435
commit
47954136a9
2 changed files with 35 additions and 0 deletions
1
dev-python/aiogram/Manifest
Normal file
1
dev-python/aiogram/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST aiogram-2.22.1.tar.gz 157651 BLAKE2B 3bd74286bd5c40413e5e24635984cb95b4a9348935f8d97ec1a5012e9d1af49ad92e239bef284c532284cd630bf2896d81017799bb9d603dd5891f1eff1386ef SHA512 c516f3e66195c548c85f9b02db96c3889da1166c72211be7e28526fd1c8b2ff2baadf0ab6cc586c27e8d8a42e2474ef26b149cc6950c900c2a14f9053ca870f7
|
||||
34
dev-python/aiogram/aiogram-2.22.1.ebuild
Normal file
34
dev-python/aiogram/aiogram-2.22.1.ebuild
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
#https://projects.gentoo.org/python/guide/distutils.html#pep-517-build-systems
|
||||
#DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Asynchronous framework for Telegram Bot API"
|
||||
HOMEPAGE="https://github.com/aiogram/aiogram"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE="proxy fast"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/aiohttp-3.8.0[${PYTHON_USEDEP}] <dev-python/aiohttp-3.9.0
|
||||
>=dev-python/Babel-2.9.1[${PYTHON_USEDEP}] <dev-python/Babel-2.11.0
|
||||
>=dev-python/certifi-2021.10.8[${PYTHON_USEDEP}]
|
||||
|
||||
proxy? ( >=dev-python/aiohttp-socks-0.5.3[${PYTHON_USEDEP}] )
|
||||
fast? (
|
||||
>=dev-python/uvloop-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/ujson-1.35[${PYTHON_USEDEP}]
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
#distutils_enable_tests pytest
|
||||
Loading…
Reference in a new issue