Files
nixpkgs/pkgs/development/python-modules/ledger-agent/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

44 lines
752 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
ledgerblue,
setuptools,
libagent,
wheel,
}:
buildPythonPackage rec {
pname = "ledger-agent";
version = "0.9.0";
format = "setuptools";
src = fetchPypi {
pname = "ledger_agent";
inherit version;
sha256 = "03zj602m2rln9yvr08dswy56vzkbldp8b074ixwzz525dafblr92";
};
propagatedBuildInputs = [
ledgerblue
libagent
setuptools
wheel
];
# no tests
doCheck = false;
meta = {
description = "Using Ledger as hardware-based SSH/PGP agent";
homepage = "https://github.com/romanz/trezor-agent";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [
hkjn
np
mmahut
];
platforms = lib.platforms.linux;
};
}