guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add python-keepkey.


From: Danny Milosavljevic
Subject: 01/01: gnu: Add python-keepkey.
Date: Thu, 28 Dec 2017 16:16:27 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit d6ddeffcbcf0ba1b82557da470004b050999762b
Author: Danny Milosavljevic <address@hidden>
Date:   Thu Dec 28 22:15:34 2017 +0100

    gnu: Add python-keepkey.
    
    * gnu/packages/finance.scm (python-keepkey, python2-keepkey): New variables.
---
 gnu/packages/finance.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 8da5bf5..5284460 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -615,6 +615,40 @@ TREZOR Hardware Wallet.")
 (define-public python2-trezor
   (package-with-python2 python-trezor))
 
+(define-public python-keepkey
+  (package
+    (name "python-keepkey")
+    (version "4.0.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "keepkey" version))
+        (sha256
+          (base32
+            "0f4iqqjlqmamw4mhyhik4qlb5bnfd10wbjw9yzgir105wh5fdpnd"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (delete 'check)
+         (add-after 'install 'check
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (add-installed-pythonpath inputs outputs)
+             (apply invoke "python" (find-files "tests/unit" "\\.py$")))))))
+    (propagated-inputs
+     `(("python-ecdsa" ,python-ecdsa)
+       ("python-hidapi" ,python-hidapi)
+       ("python-mnemonic" ,python-mnemonic)
+       ("python-protobuf" ,python-protobuf)))
+    (home-page "https://github.com/keepkey/python-keepkey";)
+    (synopsis "Python library for communicating with KeepKey Hardware Wallet")
+    (description "@code{keepkey} is a Python library for communicating with
+the KeepKey Hardware Wallet.")
+    (license license:lgpl3)))
+
+(define-public python2-keepkey
+  (package-with-python2 python-keepkey))
+
 (define-public ledger-agent
   (package
     (name "ledger-agent")



reply via email to

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