libagent: 0.14.1 -> 0.14.4 (#154780)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
31e8ff776a
commit
bba53f2080
1 changed files with 6 additions and 6 deletions
|
@ -1,22 +1,22 @@
|
||||||
{ lib, fetchFromGitHub, buildPythonPackage, ed25519, ecdsa , semver, mnemonic,
|
{ lib, fetchFromGitHub, buildPythonPackage, ed25519, ecdsa , semver, mnemonic
|
||||||
unidecode, mock, pytest , backports-shutil-which, configargparse,
|
, unidecode, mock, pytest , backports-shutil-which, configargparse
|
||||||
python-daemon, pymsgbox }:
|
, python-daemon, pymsgbox, pynacl }:
|
||||||
|
|
||||||
# XXX: when changing this package, please test the package onlykey-agent.
|
# XXX: when changing this package, please test the package onlykey-agent.
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "libagent";
|
pname = "libagent";
|
||||||
version = "0.14.1";
|
version = "0.14.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "romanz";
|
owner = "romanz";
|
||||||
repo = "trezor-agent";
|
repo = "trezor-agent";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "16y1y9ahcv3wj7f0v4mfiwzkmn2hz1iv7y13cgr57sxa3ymyqx6c";
|
sha256 = "1ksv494xpga27ifrjyn1bkqaya5h769lqb9rx1ng0n4kvmnrqr3l";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ unidecode backports-shutil-which configargparse
|
propagatedBuildInputs = [ unidecode backports-shutil-which configargparse
|
||||||
python-daemon pymsgbox ecdsa ed25519 mnemonic semver ];
|
python-daemon pymsgbox ecdsa ed25519 mnemonic semver pynacl ];
|
||||||
|
|
||||||
checkInputs = [ mock pytest ];
|
checkInputs = [ mock pytest ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue