mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.libagent: fix propagatedBuildInputs
This commit is contained in:
parent
80b64a2e04
commit
d0ce8834ae
1 changed files with 5 additions and 9 deletions
|
@ -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";
|
||||
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue