[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/46: gnu: python-argon2-cffi: Update to 21.1.0.
From: |
guix-commits |
Subject: |
17/46: gnu: python-argon2-cffi: Update to 21.1.0. |
Date: |
Tue, 7 May 2024 18:34:00 -0400 (EDT) |
rekado pushed a commit to branch python-team
in repository guix.
commit d89692d957ba58b274fbe4a05bc91e39a57a4c84
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 18:24:17 2024 +0200
gnu: python-argon2-cffi: Update to 21.1.0.
* gnu/packages/python-crypto.scm (python-argon2-cffi): Update to 21.1.0.
[source]: Simplify snippet.
[arguments]: Do not quote list; respect TESTS? in 'check phase.
[propagated-inputs]: Add python-typing-extensions; remove python-six.
Change-Id: Ifeee408dbcb43ff435cc1e9563df07f89df3ffb2
---
gnu/packages/python-crypto.scm | 29 ++++++++++++++++-------------
1 file changed, 16 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 43cab0fe3c..4a9883a8e3 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1573,36 +1573,39 @@ I/O-free core, and integration modules for different
event loops.")
(define-public python-argon2-cffi
(package
(name "python-argon2-cffi")
- (version "20.1.0")
+ (version "21.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "argon2-cffi" version))
(sha256
(base32
- "0zgr4mnnm0p4i99023safb0qb8cgvl202nly1rvylk2b7qnrn0nq"))
+ "0w5q5cdwmzpjgw3bl9f6b9a5xai87qvx3jryra9gd8fi0c8vc47p"))
(modules '((guix build utils)))
- (snippet '(begin (delete-file-recursively "extras") #t))))
+ (snippet '(delete-file-recursively "extras"))))
+ ;; TODO: with pyproject-build-system the install phase fails.
(build-system python-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
+ (list
+ #:phases
+ '(modify-phases %standard-phases
(replace 'build
(lambda _
(setenv "ARGON2_CFFI_USE_SYSTEM" "1")
(invoke "python" "setup.py" "build")))
(replace 'check
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest")
- (invoke "python" "-m" "argon2" "--help")
- ;; see tox.ini
- (invoke "python" "-m" "argon2" "-n" "1" "-t" "1" "-m" "8" "-p"
"1"))))))
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest")
+ (invoke "python" "-m" "argon2" "--help")
+ ;; see tox.ini
+ (invoke "python" "-m" "argon2" "-n" "1" "-t" "1" "-m" "8" "-p"
"1")))))))
(propagated-inputs
- (list python-cffi python-six))
+ (list python-cffi python-typing-extensions))
(inputs (list argon2))
(native-inputs
- (list python-hypothesis python-pytest))
+ (list python-hypothesis
+ python-pytest))
(home-page "https://argon2-cffi.readthedocs.io/")
(synopsis "Secure Password Hashes for Python")
(description
- 29/46: gnu: python-trio: Use pyproject-build-system., (continued)
- 29/46: gnu: python-trio: Use pyproject-build-system., guix-commits, 2024/05/07
- 30/46: gnu: python-jupyter-client: Update to 7.4.4., guix-commits, 2024/05/07
- 35/46: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/05/07
- 33/46: gnu: python-notebook: Update to 6.5.7., guix-commits, 2024/05/07
- 38/46: gnu: python-tabulate: Add Setuptools and Wheel., guix-commits, 2024/05/07
- 15/46: gnu: python-jedi: Update to 0.19.1., guix-commits, 2024/05/07
- 08/46: gnu: Add python-fqdn., guix-commits, 2024/05/07
- 11/46: gnu: Add python-pytest-jupyter., guix-commits, 2024/05/07
- 14/46: gnu: python-attrs: Update to 23.2.0., guix-commits, 2024/05/07
- 16/46: gnu: python-send2trash: Update to 1.8.2., guix-commits, 2024/05/07
- 17/46: gnu: python-argon2-cffi: Update to 21.1.0.,
guix-commits <=
- 18/46: gnu: python-jsonschema: Update to 4.22.0., guix-commits, 2024/05/07
- 19/46: gnu: python-websocket-client: Update to 1.8.0., guix-commits, 2024/05/07
- 20/46: gnu: python-prometheus-client: Update to 0.20.0., guix-commits, 2024/05/07
- 21/46: gnu: python-pytest-tornasync: Use Tornado 6., guix-commits, 2024/05/07
- 23/46: gnu: python-pyzmq: Use Tornado 6., guix-commits, 2024/05/07
- 24/46: gnu: python-jupyter-core: Update to 5.7.2., guix-commits, 2024/05/07
- 26/46: gnu: python-ipykernel: Set environment variable., guix-commits, 2024/05/07
- 28/46: gnu: python-nbconvert: Use pyproject-build-system., guix-commits, 2024/05/07
- 31/46: gnu: python-json-logger: Update to 2.0.7., guix-commits, 2024/05/07
- 39/46: gnu: python-openapi-schema-validator: Update to 0.6.2., guix-commits, 2024/05/07