diff options
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r-- | gnu/packages/python-crypto.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 6b0270a2c6..f4d8a7819c 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -646,15 +646,16 @@ OpenSSL library.") (base32 "18v3rfyv7xi26fb97nw1xc0l6x8wi0i4xj8dlq4gblpbjxiac187")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) (arguments (list + #:test-backend #~'unittest #:phases #~(modify-phases %standard-phases (add-after 'unpack 'relax-gcc-14-strictness (lambda _ (setenv "CFLAGS" (string-append "-g -O2 -Wno-error=int-conversion"))))))) + (native-inputs (list python-setuptools)) (home-page "https://github.com/tgalal/python-axolotl-curve25519") (synopsis "Python wrapper for curve25519 library") (description "This is a python wrapper for the curve25519 library @@ -711,11 +712,11 @@ environments.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 - "1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z")))) - (build-system python-build-system) + (base32 "1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z")))) + (build-system pyproject-build-system) + (arguments (list #:test-backend #~'unittest)) (propagated-inputs - (list python-axolotl-curve25519 python-cryptography python-protobuf-5)) + (list python-cryptography python-protobuf-5 python-setuptools)) (home-page "https://dev.gajim.org/gajim/omemo-dr") (synopsis "OMEMO cryptography library") (description "OMEMO cryptography library that was forked from python-axolotl.") |