blob: e623458eab99e60fbd5a10ec07e203778efd31a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..14} )
inherit distutils-r1
DESCRIPTION="Python SDK for Nitrokey devices"
HOMEPAGE="https://github.com/Nitrokey/nitrokey-sdk-py https://pypi.org/project/nitrokey/"
SRC_URI="https://github.com/Nitrokey/nitrokey-sdk-py/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/nitrokey-sdk-py-${PV}"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/crcmod-1.7[${PYTHON_USEDEP}]
<dev-python/crcmod-2[${PYTHON_USEDEP}]
>=dev-python/cryptography-41[${PYTHON_USEDEP}]
>=dev-python/fido2-1.1.2:=[${PYTHON_USEDEP}]
<dev-python/fido2-3:=[${PYTHON_USEDEP}]
>=dev-python/hidapi-0.14[${PYTHON_USEDEP}]
<dev-python/hidapi-0.15[${PYTHON_USEDEP}]
>=dev-python/poetry-core-2[${PYTHON_USEDEP}]
<dev-python/poetry-core-3[${PYTHON_USEDEP}]
>=dev-python/protobuf-5.26:=[${PYTHON_USEDEP}]
<dev-python/protobuf-7:=[${PYTHON_USEDEP}]
>=dev-python/pyserial-3.5[${PYTHON_USEDEP}]
<dev-python/pyserial-4[${PYTHON_USEDEP}]
>=dev-python/requests-2.16[${PYTHON_USEDEP}]
<dev-python/requests-3[${PYTHON_USEDEP}]
>=dev-python/semver-3[${PYTHON_USEDEP}]
<dev-python/semver-4[${PYTHON_USEDEP}]
>=dev-python/tlv8-0.10[${PYTHON_USEDEP}]
<dev-python/tlv8-0.11[${PYTHON_USEDEP}]
>=dev-python/types-protobuf-5.26[${PYTHON_USEDEP}]
<dev-python/types-protobuf-7[${PYTHON_USEDEP}]
>=dev-python/types-requests-2.16[${PYTHON_USEDEP}]
<dev-python/types-requests-3[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.1[${PYTHON_USEDEP}]
<dev-python/typing-extensions-5[${PYTHON_USEDEP}]
"
distutils_enable_sphinx docs
distutils_enable_tests pytest
|