summary refs log tree commit diff
path: root/pkgs/development/python-modules/trezor
diff options
context:
space:
mode:
authorClemens Fruhwirth <clemens@endorphin.org>2017-10-26 22:47:21 +0200
committerClemens Fruhwirth <clemens@endorphin.org>2017-10-26 22:58:09 +0200
commit160e914f502df0740a7e04cd477ae0b9d109da58 (patch)
tree4c03d9bdad66d6fe1c6bb610930b2dee3a177194 /pkgs/development/python-modules/trezor
parentbeb4f227ce83edf30f2056653e4dda2f07042d20 (diff)
downloadnixlib-160e914f502df0740a7e04cd477ae0b9d109da58.tar
nixlib-160e914f502df0740a7e04cd477ae0b9d109da58.tar.gz
nixlib-160e914f502df0740a7e04cd477ae0b9d109da58.tar.bz2
nixlib-160e914f502df0740a7e04cd477ae0b9d109da58.tar.lz
nixlib-160e914f502df0740a7e04cd477ae0b9d109da58.tar.xz
nixlib-160e914f502df0740a7e04cd477ae0b9d109da58.tar.zst
nixlib-160e914f502df0740a7e04cd477ae0b9d109da58.zip
python-trezor: Move mnemonic dependency to propagatedBuildInputs
Diffstat (limited to 'pkgs/development/python-modules/trezor')
-rw-r--r--pkgs/development/python-modules/trezor/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix
index c473403f53d5..cb4b63ade81d 100644
--- a/pkgs/development/python-modules/trezor/default.nix
+++ b/pkgs/development/python-modules/trezor/default.nix
@@ -12,9 +12,9 @@ buildPythonPackage rec {
     sha256 = "6bdb69fc125ba705854e21163be6c7da3aa17c2a3a84f40b6d8a3f6e4a8cb314";
   };
 
-  propagatedBuildInputs = [ protobuf hidapi requests ];
+  propagatedBuildInputs = [ protobuf hidapi requests mnemonic ];
 
-  buildInputs = [ ecdsa mnemonic ];
+  buildInputs = [ ecdsa ];
 
   # There are no actual tests: "ImportError: No module named tests"
   doCheck = false;