summary refs log tree commit diff
path: root/pkgs/development/python-modules/trezor
diff options
context:
space:
mode:
authorJan Hrnko <jan.hrnko@satoshilabs.com>2019-07-31 19:52:54 +0200
committerJan Hrnko <jan.hrnko@satoshilabs.com>2019-07-31 21:04:42 +0200
commitc43f685767b3cbfce47eb9a7cc7527659c235ab4 (patch)
treeb46c8e83dba5422f808b70cd6bea89e4f17e5293 /pkgs/development/python-modules/trezor
parent68b647a3b6fcedc4dd3efc6f584ff86c50f91787 (diff)
downloadnixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.tar
nixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.tar.gz
nixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.tar.bz2
nixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.tar.lz
nixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.tar.xz
nixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.tar.zst
nixpkgs-c43f685767b3cbfce47eb9a7cc7527659c235ab4.zip
pythonPackages.trezor: 0.11.3 -> 0.11.4
Diffstat (limited to 'pkgs/development/python-modules/trezor')
-rw-r--r--pkgs/development/python-modules/trezor/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix
index 589878d69f5..12e88153696 100644
--- a/pkgs/development/python-modules/trezor/default.nix
+++ b/pkgs/development/python-modules/trezor/default.nix
@@ -10,20 +10,21 @@
 , construct
 , libusb1
 , rlp
+, shamir-mnemonic
 }:
 
 buildPythonPackage rec {
   pname = "trezor";
-  version = "0.11.3";
+  version = "0.11.4";
 
   disabled = !isPy3k;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "c79a500e90d003073c8060d319dceb042caaba9472f13990c77ed37d04a82108";
+    sha256 = "aeb3f56a4c389495617f27bf218471b7969f636d25ddc491dfefeb8a1b3cd499";
   };
 
-  propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp ];
+  propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp shamir-mnemonic ];
 
   # build requires UTF-8 locale
   LANG = "en_US.UTF-8";
@@ -41,8 +42,8 @@ buildPythonPackage rec {
 
   meta = {
     description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
-    homepage = https://github.com/trezor/python-trezor;
+    homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
     license = lib.licenses.gpl3;
-    maintainers = with lib.maintainers; [ np prusnak mmahut ];
+    maintainers = with lib.maintainers; [ np prusnak mmahut "1000101" ];
   };
 }