python-modules/trezor: Fix build

Regression introduced by 76beb08313.

With version 0.7.15 a few additional dependencies are needed by trezor,
mainly a newer version of protobuf bindings and requests.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @np
This commit is contained in:
aszlig 2017-06-22 14:27:11 +02:00
parent 5041df4411
commit 9c57f3b5c0
No known key found for this signature in database
GPG key ID: 1DE8E48E57DB5436

View file

@ -1,4 +1,6 @@
{ lib, fetchPypi, buildPythonPackage, protobuf3_0, hidapi, ecdsa, mnemonic }:
{ lib, fetchPypi, buildPythonPackage, protobuf3_2, hidapi, ecdsa, mnemonic
, requests
}:
buildPythonPackage rec {
name = "${pname}-${version}";
@ -10,7 +12,7 @@ buildPythonPackage rec {
sha256 = "f7e4f509263ca172532b4c0a440d164add7cdc021b4370a253d51eba5806b618";
};
propagatedBuildInputs = [ protobuf3_0 hidapi ];
propagatedBuildInputs = [ protobuf3_2 hidapi requests ];
buildInputs = [ ecdsa mnemonic ];