mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
python.pkgs.libagent: enable tests
This commit is contained in:
parent
8ad6b2e862
commit
05f9a36612
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa
|
||||
, semver, keepkey, trezor, mnemonic, ledgerblue, unidecode
|
||||
, semver, keepkey, trezor, mnemonic, ledgerblue, unidecode, mock, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -17,9 +17,13 @@ buildPythonPackage rec {
|
||||
trezor mnemonic ledgerblue
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
unidecode
|
||||
];
|
||||
propagatedBuildInputs = [ unidecode ];
|
||||
|
||||
checkInputs = [ mock pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test libagent/tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Using hardware wallets as SSH/GPG agent";
|
||||
|
Loading…
Reference in New Issue
Block a user