mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python.pkgs.libagent: add missing unidecode lib
This commit is contained in:
parent
160e914f50
commit
65d115dd7d
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa
|
||||
, semver, keepkey, trezor, mnemonic, ledgerblue
|
||||
, semver, keepkey, trezor, mnemonic, ledgerblue, unidecode
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -17,6 +17,10 @@ buildPythonPackage rec {
|
|||
trezor mnemonic ledgerblue
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
unidecode
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Using hardware wallets as SSH/GPG agent";
|
||||
homepage = https://github.com/romanz/trezor-agent;
|
||||
|
|
Loading…
Reference in a new issue