pythonPackages.libagent: fix propagatedBuildInputs

This commit is contained in:
Jaakko Luttinen 2018-08-26 15:44:38 +03:00
parent 80b64a2e04
commit d0ce8834ae
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964

View File

@ -1,6 +1,6 @@
{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa { stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa , semver, mnemonic,
, semver, keepkey, trezor, mnemonic, ledgerblue, unidecode, mock, pytest unidecode, mock, pytest , backports-shutil-which, ConfigArgParse,
}: pythondaemon, pymsgbox }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "libagent"; pname = "libagent";
@ -11,12 +11,8 @@ buildPythonPackage rec {
sha256 = "55af1ad2a6c95aef1fc5588c2002c9e54edbb14e248776b64d00628235ceda3e"; sha256 = "55af1ad2a6c95aef1fc5588c2002c9e54edbb14e248776b64d00628235ceda3e";
}; };
buildInputs = [ propagatedBuildInputs = [ unidecode backports-shutil-which ConfigArgParse
ed25519 ecdsa semver keepkey pythondaemon pymsgbox ecdsa ed25519 mnemonic semver ];
trezor mnemonic ledgerblue
];
propagatedBuildInputs = [ unidecode ];
checkInputs = [ mock pytest ]; checkInputs = [ mock pytest ];