[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50647] [PATCH 2/3] gnu: python-passlib: Use python-bcrypt.
From: |
Vinicius Monego |
Subject: |
[bug#50647] [PATCH 2/3] gnu: python-passlib: Use python-bcrypt. |
Date: |
Fri, 17 Sep 2021 17:55:33 +0000 |
py-bcrypt is unmaintained and support will be dropped in passlib 1.8. The
recommended option is bcrypt.
* gnu/packages/python-crypto.scm (python-passlib)[propagated-inputs]: Remove
python-py-bcrypt. Add python-bcrypt.
[arguments]<#:phases>: Don't return #t.
---
Source: https://passlib.readthedocs.io/en/stable/install.html#optional-libraries
gnu/packages/python-crypto.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index cbf563af42..bfc97e53b3 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -154,13 +154,13 @@ Password Scheme\"} by Niels Provos and David Mazieres.")
(native-inputs
`(("python-nose" ,python-nose)))
(propagated-inputs
- `(("python-py-bcrypt" ,python-py-bcrypt)))
+ `(("python-bcrypt" ,python-bcrypt)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'set-PYTHON_EGG_CACHE
;; Some tests require access to "$HOME/.cython".
- (lambda _ (setenv "PYTHON_EGG_CACHE" "/tmp") #t)))))
+ (lambda _ (setenv "PYTHON_EGG_CACHE" "/tmp"))))))
(home-page "https://bitbucket.org/ecollins/passlib")
(synopsis "Comprehensive password hashing framework")
(description
--
2.30.2