mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
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:
parent
498b6cd008
commit
aa50cfe05a
1 changed files with 21 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue