summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorMorgan Smith <Morgan.J.Smith@outlook.com>2024-11-23 17:58:52 +0100
committerLudovic Courtès <ludo@gnu.org>2024-11-25 11:40:54 +0100
commitaa50cfe05a4b64b9bfa2c7903354c0c90816cabf (patch)
tree9b0b4814860f54cc08f334f8e420809516feedd6 /gnu/packages/python-crypto.scm
parent498b6cd008f1989b7cfda060d8a6790015eb2340 (diff)
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>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 3a7f53abee0..19df7ef3a93 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -751,6 +751,27 @@ is a ratcheting forward secrecy protocol that works in synchronous and
751asynchronous messaging environments.") 751asynchronous messaging environments.")
752 (license license:gpl3))) 752 (license license:gpl3)))
753 753
754(define-public python-omemo-dr
755 (package
756 (name "python-omemo-dr")
757 (version "1.0.1")
758 (source
759 (origin
760 (method git-fetch)
761 (uri (git-reference
762 (url "https://dev.gajim.org/gajim/omemo-dr")
763 (commit (string-append "v" version))))
764 (file-name (git-file-name name version))
765 (sha256
766 (base32
767 "1gx0znbfvs8jg9s754hha81l8wpghswkfsqx2jzpgv6gigf3sm8z"))))
768 (build-system python-build-system)
769 (propagated-inputs
770 (list python-axolotl-curve25519 python-cryptography python-protobuf-5))
771 (home-page "https://dev.gajim.org/gajim/omemo-dr")
772 (synopsis "OMEMO cryptography library")
773 (description "OMEMO cryptography library that was forked from python-axolotl.")
774 (license license:gpl3)))
754 775
755(define-public python-pyaes 776(define-public python-pyaes
756 (package 777 (package