Files
guru/dev-python/pygls/pygls-2.1.1.ebuild
Pavel Sobolev 189d6e7471 dev-python/pygls: add 2.1.1
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
2026-03-29 17:14:57 +03:00

45 lines
855 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_{12..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/websockets[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
src_install() {
distutils-r1_src_install
dodoc LICENSE.txt
}
pkg_postinst() {
optfeature "websockets support" dev-python/websockets
}