Files
guru/dev-python/pygls/pygls-2.0.1.ebuild
Pavel Sobolev 6d959b4231 dev-python/pygls: add 2.0.1, drop 2.0.0
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
2026-02-01 15:38:32 +03:00

39 lines
801 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 optfeature
DESCRIPTION="A pythonic generic language server"
HOMEPAGE="
https://github.com/openlawlibrary/pygls
https://pypi.org/project/pygls
"
SRC_URI="https://github.com/openlawlibrary/pygls/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/cattrs[${PYTHON_USEDEP}]
dev-python/lsprotocol[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
${RDEPEND}
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/websockets[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
pkg_postinst() {
optfeature "websockets support" dev-python/websockets
}