40 lines
800 B
Bash
40 lines
800 B
Bash
|
# Copyright 2022 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
DISTUTILS_USE_PEP517=setuptools
|
||
|
PYTHON_COMPAT=( python3_{10..11} )
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="A pythonic generic language server"
|
||
|
HOMEPAGE="
|
||
|
https://pygls.readthedocs.io/en/latest/
|
||
|
https://pypi.org/project/pygls/
|
||
|
"
|
||
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||
|
|
||
|
LICENSE="Apache-2.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
IUSE="test"
|
||
|
|
||
|
RESTRICT="!test? ( test )"
|
||
|
|
||
|
DEPEND="
|
||
|
dev-python/wheel[${PYTHON_USEDEP}]
|
||
|
dev-python/toml[${PYTHON_USEDEP}]
|
||
|
"
|
||
|
RDEPEND="
|
||
|
<dev-python/pydantic-1.10.0[${PYTHON_USEDEP}]
|
||
|
<dev-python/typeguard-3.0.0[${PYTHON_USEDEP}]
|
||
|
"
|
||
|
BDEPEND="
|
||
|
test? (
|
||
|
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||
|
dev-python/mock[${PYTHON_USEDEP}]
|
||
|
)
|
||
|
"
|
||
|
|
||
|
distutils_enable_tests pytest
|