~ruther/guix-local

594ca9ddd4f201d6389c5a6805100f4fc7f4ec69 — Cayetano Santos 4 months ago 7df0211
gnu: python-olm: Replace libolm by olm.

libolm is deprecaded by olm.

* gnu/packages/crypto.scm (python-olm)[inherit]: Switch from libolm to
olm.
[inputs]: Remove libolm; add olm.

Change-Id: Ieb6360435218348027fedf4db735e49ed5aa0e68
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 3 insertions(+), 3 deletions(-)

M gnu/packages/crypto.scm
M gnu/packages/crypto.scm => gnu/packages/crypto.scm +3 -3
@@ 1372,8 1372,8 @@ API.")

(define-public python-olm
  (package
    ;; python-olm is part of libolm and must be updated at the same time.
    (inherit libolm)
    ;; python-olm is part of olm and must be updated at the same time.
    (inherit olm)
    (name "python-olm")
    (build-system python-build-system)
    (arguments


@@ 1390,7 1390,7 @@ API.")
             (when tests?
               (add-installed-pythonpath inputs outputs)
               (invoke "pytest")))))))
    (inputs (list libolm))
    (inputs (list olm))
    (propagated-inputs
     (list python-cffi python-future))
    (native-inputs