24 lines
586 B
Bash
24 lines
586 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_{11..12} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A library for creating GraphQL APIs"
|
|
HOMEPAGE="https://pypi.org/project/strawberry-graphql/"
|
|
SRC_URI="$(pypi_sdist_url)"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
<dev-python/graphql-core-3.4.0
|
|
>=dev-python/graphql-core-3.2.0[${PYTHON_USEDEP}]
|
|
>=dev-python/typing-extensions-4.5.0[${PYTHON_USEDEP}]
|
|
>=dev-python/python-dateutil-2.7.0[${PYTHON_USEDEP}]
|
|
"
|