blob: b2ecd42ab2290119e38f3632366aed9531e2041c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYPI_NO_NORMALIZE=yes
PYTHON_COMPAT=( python3_{12,13} )
DISTUTILS_USE_PEP517=pdm-backend
inherit distutils-r1 pypi
DESCRIPTION="Yet another formatter for beancount"
HOMEPAGE="https://github.com/SEIAROTg/autobean-format https://pypi.org/project/autobean-format/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="${PYTHON_DEPS}
>=dev-python/autobean-refactor-0.2.3[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.4.0[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
|