all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Arun Isaac <arunisaac@systemreboot.net>
To: guix-devel@gnu.org
Subject: [PATCH 2/2] gnu: Add python-axolotl.
Date: Wed, 19 Oct 2016 19:48:49 +0530	[thread overview]
Message-ID: <20161019141849.4450-2-arunisaac@systemreboot.net> (raw)
In-Reply-To: <20161019141849.4450-1-arunisaac@systemreboot.net>

* gnu/packages/python.scm (python-axolotl, python2-axolotl): New variables.
---
 gnu/packages/python.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 326b2dd..f0df817 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -79,6 +79,7 @@
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages protobuf)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages sdl)
   #:use-module (gnu packages statistics)
@@ -11091,3 +11092,39 @@ python-axolotl.")
 
 (define-public python2-axolotl-curve25519
   (package-with-python2 python-axolotl-curve25519))
+
+(define-public python-axolotl
+  (package
+    (name "python-axolotl")
+    (version "0.1.35")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/tgalal/python-axolotl/archive/"
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1z8d89p7v40p4bwywjm9h4z28fdvra79ddw06azlkrfjbl7dxmz8"))))
+    (build-system python-build-system)
+    (arguments
+     `(;; Prevent creation of the egg. This works around
+       ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=20765
+       #:configure-flags '("--root=/")))
+    (inputs
+     `(("python-axolotl-curve25519" ,python-axolotl-curve25519)
+       ("python-dateutil" ,python-dateutil)
+       ("python-protobuf" ,python-protobuf)
+       ("python-pycrypto" ,python-pycrypto)))
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/tgalal/python-axolotl")
+    (synopsis "Python port of libaxolotl-android")
+    (description "This is a python port of libaxolotl-android
+originally written by Moxie Marlinspike.  This is a ratcheting forward
+secrecy protocol that works in synchronous and asynchronous messaging
+environments.")
+    (license license:gpl3)))
+
+(define-public python2-axolotl
+  (package-with-python2 python-axolotl))
-- 
2.10.1

  reply	other threads:[~2016-10-19 14:19 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-19 14:18 [PATCH 1/2] gnu: Add python-axolotl-curve25519 Arun Isaac
2016-10-19 14:18 ` Arun Isaac [this message]
2016-10-19 14:52   ` [PATCH 2/2] gnu: Add python-axolotl Hartmut Goebel
2016-10-20  9:33     ` Arun Isaac
2016-10-20 10:15       ` [PATCH 1/2] gnu: Add python-axolotl-curve25519 Arun Isaac
2016-10-20 10:15         ` [PATCH 2/2] gnu: Add python-axolotl Arun Isaac
2016-10-20 11:11         ` [PATCH 1/2] gnu: Add python-axolotl-curve25519 Arun Isaac
2016-11-05 20:35           ` Leo Famulari
2016-11-09  6:25             ` Arun Isaac
2016-10-19 15:46 ` Arun Isaac
2016-10-19 15:57   ` Marius Bakke
2016-10-20  9:30     ` Arun Isaac

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161019141849.4450-2-arunisaac@systemreboot.net \
    --to=arunisaac@systemreboot.net \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.