guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 2261f089a866f59cde5d7f28bdd308f7ce9d7d51
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Aug 5 13:01:53 2025 +0100

    gnu: python-bcrypt: Update to 3.2.2.
    
    * gnu/packages/python-crypto.scm (python-bcrypt): Update to 3.2.2.
      [build-system]: Use pyproject.
      [propagated-inputs]: Remove python-six.
      [native-inputs]: Remove python-pycparser; add python-setuptools.
    
    Change-Id: I3c5a82311e9fa2af00c4103c0ce0dd0ec5ade9c0
---
 gnu/packages/python-crypto.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index e4619effac..87b63db4a0 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -110,21 +110,21 @@ the Bitcoin network.")
 (define-public python-bcrypt
   (package
     (name "python-bcrypt")
-    (version "3.2.0")
+    (version "3.2.2")    ;the latest not Rust version
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "bcrypt" version))
        (sha256
-        (base32 "0agvzdn7r7jx5y4scl5gjmrmr6njvizwmr9n7h1kmaahdrrc34sv"))))
-    (build-system python-build-system)
+        (base32 "1yvbdfmkssx1jf2lrhbs58xljmyi3p82r7rav82pf1bp44642g23"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-pycparser python-pytest))
+     (list python-pytest
+           python-setuptools))
     (propagated-inputs
-     (list python-cffi python-six))
+     (list python-cffi))
     (home-page "https://github.com/pyca/bcrypt/";)
-    (synopsis
-     "Modern password hashing library")
+    (synopsis "Modern password hashing library")
     (description
      "Bcrypt is a Python module which provides a password hashing method based
 on the Blowfish password hashing algorithm, as described in

Reply via email to