Skip to content

Commit

Permalink
pythonPackages.libagent: fix propagatedBuildInputs
Browse files Browse the repository at this point in the history
(cherry picked from commit d0ce883)
  • Loading branch information
jluttine authored and samueldr committed Sep 13, 2018
1 parent 91f488c commit ed0fc7d
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions pkgs/development/python-modules/libagent/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa
, semver, keepkey, trezor, mnemonic, ledgerblue, unidecode, mock, pytest
}:
{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa , semver, mnemonic,
unidecode, mock, pytest , backports-shutil-which, ConfigArgParse,
pythondaemon, pymsgbox }:

buildPythonPackage rec {
pname = "libagent";
Expand All @@ -11,12 +11,8 @@ buildPythonPackage rec {
sha256 = "55af1ad2a6c95aef1fc5588c2002c9e54edbb14e248776b64d00628235ceda3e";
};

buildInputs = [
ed25519 ecdsa semver keepkey
trezor mnemonic ledgerblue
];

propagatedBuildInputs = [ unidecode ];
propagatedBuildInputs = [ unidecode backports-shutil-which ConfigArgParse
pythondaemon pymsgbox ecdsa ed25519 mnemonic semver ];

checkInputs = [ mock pytest ];

Expand Down

0 comments on commit ed0fc7d

Please sign in to comment.