guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#31241] [PATCH 11/13] gnu: Add python-libnacl.


From: Nicolas Goaziou
Subject: [bug#31241] [PATCH 11/13] gnu: Add python-libnacl.
Date: Mon, 23 Apr 2018 01:04:18 +0200

* gnu/packages/python-crypto.scm (python-libnacl): New variable.
---
 gnu/packages/python-crypto.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index e8a209735..41b6d5869 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -861,3 +861,37 @@ through the Engine interface.")
     (synopsis "Scrypt for Python")
     (description "Scrypt for Python")
     (license license:isc)))
+
+(define-public python-libnacl
+  (package
+    (name "python-libnacl")
+    (version "1.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "libnacl" version))
+       (sha256
+        (base32
+         "0nv7n8nfswkhl614x5mllrkvaslraa0053q11iylb337cy43vb4v"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'locate-libsodium
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "libnacl/__init__.py"
+               (("(return ctypes.cdll.LoadLibrary\\(')libsodium.so('\\))"
+                 _ pre post)
+                (let ((libsodium (string-append (assoc-ref inputs "libsodium")
+                                                "/lib/libsodium.so")))
+                  (string-append pre libsodium post)))))))))
+    (propagated-inputs
+     `(("libsodium" ,libsodium)
+       ("python-pyhamcrest" ,python-pyhamcrest)))
+    (home-page "https://libnacl.readthedocs.org/";)
+    (synopsis "Python bindings for libsodium based on ctypes")
+    (description "@code{libnacl} is used to gain direct access to the
+functions exposed by @code{NaCl} library via @code{libsodium}.  It has
+been constructed to maintain extensive documentation on how to use
address@hidden as well as being completely portable.")
+    (license license:asl2.0)))
-- 
2.17.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]