gnu: python-omemo-dr: Switch to pyproject.

* gnu/packages/python-crypto.scm (python-omemo-dr):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:test-backend>: Set it.
[native-inputs]: Add python-setuptools. Remove
python-axolotl-curve25519.

Change-Id: I99f91b1fa4a2d9b54112144dc06ad33b633b9fec
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-09-21 12:48:46 +02:00 committed by Sharlatan Hellseher
parent 70f5670f30
commit 5562d1492b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -712,11 +712,11 @@ environments.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z"))))
"1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z")))) (build-system pyproject-build-system)
(build-system python-build-system) (arguments (list #:test-backend #~'unittest))
(propagated-inputs (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") (home-page "https://dev.gajim.org/gajim/omemo-dr")
(synopsis "OMEMO cryptography library") (synopsis "OMEMO cryptography library")
(description "OMEMO cryptography library that was forked from python-axolotl.") (description "OMEMO cryptography library that was forked from python-axolotl.")