nixpkgs/pkgs/development/python-modules/libagent/default.nix

30 lines
824 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa , semver, mnemonic,
unidecode, mock, pytest , backports-shutil-which, ConfigArgParse,
python-daemon, pymsgbox }:
2017-05-31 20:42:35 +00:00
buildPythonPackage rec {
pname = "libagent";
2018-11-20 10:58:36 +00:00
version = "0.12.1";
2017-05-31 20:42:35 +00:00
src = fetchPypi{
inherit pname version;
2018-11-20 10:58:36 +00:00
sha256 = "f21515a217125b7c8cbb1f53327d1d4363c1b980a7e246feabf91aed9b1c51e5";
2017-05-31 20:42:35 +00:00
};
propagatedBuildInputs = [ unidecode backports-shutil-which ConfigArgParse
python-daemon pymsgbox ecdsa ed25519 mnemonic semver ];
2017-11-07 18:00:57 +00:00
checkInputs = [ mock pytest ];
checkPhase = ''
py.test libagent/tests
'';
2017-05-31 20:42:35 +00:00
meta = with stdenv.lib; {
description = "Using hardware wallets as SSH/GPG agent";
homepage = https://github.com/romanz/trezor-agent;
2017-05-31 20:42:35 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ np ];
};
}