33 lines
773 B
Bash
33 lines
773 B
Bash
|
# Copyright 2023 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
DISTUTILS_USE_PEP517=poetry
|
||
|
PYTHON_COMPAT=( python3_{10..11} )
|
||
|
inherit distutils-r1 pypi
|
||
|
|
||
|
DESCRIPTION="python library to parse the output of dmidecode"
|
||
|
HOMEPAGE="
|
||
|
https://pypi.org/project/py-dmidecode/
|
||
|
https://github.com/zaibon/py-dmidecode
|
||
|
"
|
||
|
SRC_URI="$(pypi_sdist_url)"
|
||
|
|
||
|
LICENSE="Apache-2.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
RDEPEND="
|
||
|
dev-python/click[${PYTHON_USEDEP}]
|
||
|
dev-python/mypy_extensions[${PYTHON_USEDEP}]
|
||
|
dev-python/packaging[${PYTHON_USEDEP}]
|
||
|
dev-python/pathspec[${PYTHON_USEDEP}]
|
||
|
dev-python/platformdirs[${PYTHON_USEDEP}]
|
||
|
dev-python/tomli[${PYTHON_USEDEP}]
|
||
|
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
||
|
"
|
||
|
BDEPEND=""
|
||
|
|
||
|
distutils_enable_tests pytest
|