guix_mirror_bot pushed a commit to branch master
in repository guix.

commit cc698b801e858d16e4de8fb97b5ce3a4cb33977b
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Dec 10 00:07:19 2025 +0100

    gnu: python-privy: Switch to pyproject.
    
    * gnu/packages/python-crypto.scm (python-privy):
    [build-system]: Switch to pyproject-build-system.
    [arguments]: Drop them.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: If994d1f9ac17efda3e99b62a619aa5e78516fce8
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-crypto.scm | 17 ++++-------------
 1 file changed, 4 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 14ce092361..f6decb0622 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1722,19 +1722,10 @@ implementation of the Argon2 password hashing 
algorithm.")
                (commit "2838db3df239797c71bddacc48a4c49a83f35747")))
         (file-name (git-file-name name version))
         (sha256
-         (base32
-          "1m32dh5fqc8cy7jyf1z5fs6zvmdkbq5fi98hr609gbl7s0l0y0i9"))))
-    (build-system python-build-system)
-    (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda _
-             (invoke "python" "-m" "pytest"))))))
-    (native-inputs
-     (list python-pytest))
-    (propagated-inputs
-     (list python-argon2-cffi python-cryptography))
+         (base32 "1m32dh5fqc8cy7jyf1z5fs6zvmdkbq5fi98hr609gbl7s0l0y0i9"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-setuptools))
+    (propagated-inputs (list python-argon2-cffi python-cryptography))
     (home-page "https://www.dropbox.com/developers";)
     (synopsis "Library to password-protect your data")
     (description

Reply via email to