summaryrefslogtreecommitdiff
path: root/dev-python/passlib
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-10-30 09:50:10 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-10-30 09:50:10 +0000
commite08ef2001e9e040c94c32594d8e644117e0c0929 (patch)
tree18069d5ffad0d5dc507f45d95c2cbcee47ccf251 /dev-python/passlib
parentd4a7f2a56c813fedd229bd6af662e28cdde3cc9e (diff)
downloadbaldeagleos-repo-e08ef2001e9e040c94c32594d8e644117e0c0929.tar.gz
baldeagleos-repo-e08ef2001e9e040c94c32594d8e644117e0c0929.tar.xz
baldeagleos-repo-e08ef2001e9e040c94c32594d8e644117e0c0929.zip
Adding metadata
Diffstat (limited to 'dev-python/passlib')
-rw-r--r--dev-python/passlib/passlib-1.7.4-r1.ebuild38
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/passlib/passlib-1.7.4-r1.ebuild b/dev-python/passlib/passlib-1.7.4-r1.ebuild
new file mode 100644
index 000000000000..1ce8c29d5ed4
--- /dev/null
+++ b/dev-python/passlib/passlib-1.7.4-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{6,7,8,9,10} pypy3 )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Password hashing framework supporting over 20 schemes"
+HOMEPAGE="https://foss.heptapod.net/python-libs/passlib/wikis/home"
+SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+SLOT="0"
+IUSE="doc"
+
+BDEPEND="
+ test? (
+ dev-python/bcrypt[${PYTHON_USEDEP}]
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/scrypt[${PYTHON_USEDEP}]
+ )"
+
+distutils_enable_tests nose
+
+python_install_all() {
+ distutils-r1_python_install_all
+ use doc && dodoc docs/{*.rst,requirements.txt,lib/*.rst}
+}
+
+pkg_postinst() {
+ optfeature "Argon2 support" dev-python/argon2-cffi
+ optfeature "bcrypt support" dev-python/bcrypt
+ optfeature "scrypt support" dev-python/scrypt
+ optfeature "Time-based One-Time Password (TOTP) support" dev-python/cryptography
+}