gnu: Add python-omemo-dr.

* gnu/packages/python-crypto.scm (python-omemo-dr): New variable.

Change-Id: I06b31e62dff1a740fee832e17200f8905810860a
Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Morgan Smith 2024-11-23 17:58:52 +01:00 committed by Ludovic Courtès
parent 498b6cd008
commit aa50cfe05a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -751,6 +751,27 @@ (define-public python-axolotl
asynchronous messaging environments.")
(license license:gpl3)))
(define-public python-omemo-dr
(package
(name "python-omemo-dr")
(version "1.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://dev.gajim.org/gajim/omemo-dr")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z"))))
(build-system python-build-system)
(propagated-inputs
(list python-axolotl-curve25519 python-cryptography python-protobuf-5))
(home-page "https://dev.gajim.org/gajim/omemo-dr")
(synopsis "OMEMO cryptography library")
(description "OMEMO cryptography library that was forked from python-axolotl.")
(license license:gpl3)))
(define-public python-pyaes
(package