pentoo-overlay/dev-python/fastapi/fastapi-0.65.2.ebuild
2021-07-14 15:35:29 +08:00

26 lines
624 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
PYTHON_COMPAT=( python3_{8..9} )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1
DESCRIPTION="FastAPI framework, high performance, easy to learn, fast to code, ready for production"
HOMEPAGE="https://fastapi.tiangolo.com/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE=""
RDEPEND="
>=dev-python/starlette-0.14.2[${PYTHON_USEDEP}]
dev-python/pydantic[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest