summaryrefslogtreecommitdiff
path: root/dev-python/pyotp2289/pyotp2289-1.2.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pyotp2289/pyotp2289-1.2.0.ebuild')
-rw-r--r--dev-python/pyotp2289/pyotp2289-1.2.0.ebuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/pyotp2289/pyotp2289-1.2.0.ebuild b/dev-python/pyotp2289/pyotp2289-1.2.0.ebuild
new file mode 100644
index 0000000..4252090
--- /dev/null
+++ b/dev-python/pyotp2289/pyotp2289-1.2.0.ebuild
@@ -0,0 +1,27 @@
1# Copyright 1999-2022 Gentoo Authors
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI=8
5
6DISTUTILS_USE_PEP517=setuptools
7PYTHON_COMPAT=( python3_{8..11} )
8
9inherit distutils-r1
10
11DESCRIPTION="A pure Python 3 implementation of RFC-2289 - 'A One-Time Password System'"
12HOMEPAGE="https://github.com/blackm0re/pyotp2289"
13MY_PN="pyotp2289"
14MY_P="${MY_PN}-${PV}"
15
16SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
17KEYWORDS="amd64 arm arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
18S="${WORKDIR}/${MY_P}"
19
20LICENSE="BSD"
21SLOT="0"
22
23distutils_enable_tests pytest
24
25python_install_all() {
26 distutils-r1_python_install_all
27}