My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ledger_agent/default.nix

32 lines
627 B

{ lib
, 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
];
# no tests
doCheck = false;
meta = with 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 ];
};
}