keepkey_agent: init at 0.9.0
This commit is contained in:
parent
f8b2e53aab
commit
354e872ad8
29
pkgs/development/python-modules/keepkey_agent/default.nix
Normal file
29
pkgs/development/python-modules/keepkey_agent/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, keepkey
|
||||
, setuptools
|
||||
, libagent
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "keepkey_agent";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03779gvlx70i0nnry98i4pl1d92604ix5x6jgdfkrdgzqbh5vj27";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
keepkey libagent setuptools wheel
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Using KeepKey as hardware-based SSH/PGP agent";
|
||||
homepage = https://github.com/romanz/trezor-agent;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ hkjn np mmahut ];
|
||||
};
|
||||
}
|
@ -4289,6 +4289,8 @@ in
|
||||
|
||||
kexectools = callPackage ../os-specific/linux/kexectools { };
|
||||
|
||||
keepkey_agent = with python3Packages; toPythonApplication keepkey_agent;
|
||||
|
||||
kexpand = callPackage ../development/tools/kexpand { };
|
||||
|
||||
keybase = callPackage ../tools/security/keybase {
|
||||
|
@ -6004,6 +6004,8 @@ in {
|
||||
|
||||
keepkey = callPackage ../development/python-modules/keepkey { };
|
||||
|
||||
keepkey_agent = callPackage ../development/python-modules/keepkey_agent { };
|
||||
|
||||
libagent = callPackage ../development/python-modules/libagent { };
|
||||
|
||||
ledger_agent = callPackage ../development/python-modules/ledger_agent { };
|
||||
|
Loading…
Reference in New Issue
Block a user