Skip to content

Commit

Permalink
python-modules/trezor: Fix build
Browse files Browse the repository at this point in the history
Regression introduced by 76beb08.

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
  • Loading branch information
aszlig committed Jun 22, 2017
1 parent 5041df4 commit 9c57f3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/trezor/default.nix
Original file line number Diff line number Diff line change
@@ -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}";
Expand All @@ -10,7 +12,7 @@ buildPythonPackage rec {
sha256 = "f7e4f509263ca172532b4c0a440d164add7cdc021b4370a253d51eba5806b618";
};

propagatedBuildInputs = [ protobuf3_0 hidapi ];
propagatedBuildInputs = [ protobuf3_2 hidapi requests ];

buildInputs = [ ecdsa mnemonic ];

Expand Down

0 comments on commit 9c57f3b

Please sign in to comment.