python-trezor: Move mnemonic dependency to propagatedBuildInputs

This commit is contained in:
Clemens Fruhwirth 2017-10-26 22:47:21 +02:00
parent beb4f227ce
commit 160e914f50

View file

@ -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;