Skip to content

Commit

Permalink
pythonPackages.ledgerblue: fix build inputs
Browse files Browse the repository at this point in the history
(cherry picked from commit 5c9db2f)
  • Loading branch information
jluttine authored and samueldr committed Sep 13, 2018
1 parent f8c8a23 commit ff6e4d0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pkgs/development/python-modules/ledgerblue/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchPypi, buildPythonPackage, hidapi
, pycrypto, pillow, protobuf, future, ecpy
, pycrypto, pillow, protobuf, future, ecpy, python-u2flib-host, pycryptodomex
}:

buildPythonPackage rec {
Expand All @@ -11,7 +11,12 @@ buildPythonPackage rec {
sha256 = "3969b3c375c0f3fb60ff1645621ebf2f39fb697a53851620705f27ed7b283097";
};

buildInputs = [ hidapi pycrypto pillow protobuf future ecpy ];
propagatedBuildInputs = [
hidapi pycrypto pillow protobuf future ecpy python-u2flib-host pycryptodomex
];

# No tests
doCheck = false;

meta = with stdenv.lib; {
description = "Python library to communicate with Ledger Blue/Nano S";
Expand Down

0 comments on commit ff6e4d0

Please sign in to comment.