ledger_agent: init at 0.9.0
This commit is contained in:
parent
6e99854d0f
commit
f8b2e53aab
29
pkgs/development/python-modules/ledger_agent/default.nix
Normal file
29
pkgs/development/python-modules/ledger_agent/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, ledgerblue
|
||||
, setuptools
|
||||
, libagent
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ledger_agent";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03zj602m2rln9yvr08dswy56vzkbldp8b074ixwzz525dafblr92";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ledgerblue libagent setuptools wheel
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Using Ledger as hardware-based SSH/PGP agent";
|
||||
homepage = https://github.com/romanz/trezor-agent;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ hkjn np mmahut ];
|
||||
};
|
||||
}
|
@ -22309,6 +22309,8 @@ in
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit;
|
||||
};
|
||||
|
||||
ledger_agent = with python3Packages; toPythonApplication ledger_agent;
|
||||
|
||||
ledger-live-desktop = callPackage ../applications/blockchains/ledger-live-desktop { };
|
||||
|
||||
litecoin = callPackage ../applications/blockchains/litecoin.nix {
|
||||
|
@ -6006,6 +6006,8 @@ in {
|
||||
|
||||
libagent = callPackage ../development/python-modules/libagent { };
|
||||
|
||||
ledger_agent = callPackage ../development/python-modules/ledger_agent { };
|
||||
|
||||
ledgerblue = callPackage ../development/python-modules/ledgerblue { };
|
||||
|
||||
ecpy = callPackage ../development/python-modules/ecpy { };
|
||||
|
Loading…
Reference in New Issue
Block a user