diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-06-05 19:14:31 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-06-05 19:53:43 +0300 |
commit | bfea9932841e691719256c2ec62260606d465992 (patch) | |
tree | e8c5c167fb764a76be47e286f29a1f5fab9a9d7f /dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild | |
parent | dev-python/plyr: enable py3.11 (diff) | |
download | gentoo-bfea9932841e691719256c2ec62260606d465992.tar.gz gentoo-bfea9932841e691719256c2ec62260606d465992.tar.bz2 gentoo-bfea9932841e691719256c2ec62260606d465992.zip |
dev-python/pbkdf2: EAPI=8, Use PEP517
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild')
-rw-r--r-- | dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild b/dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild new file mode 100644 index 000000000000..a76b4f47da35 --- /dev/null +++ b/dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Implementation of PBKDF2, specified in RSA PKCS#5 v2.0" +HOMEPAGE="https://www.dlitz.net/software/python-pbkdf2/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux" + +python_test() { + "${EPYTHON}" test/test_pbkdf2.py -v || die "Tests failed with ${EPYTHON}" +} |