diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-04-06 14:37:18 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:32 +0200 |
commit | e98fdeab2e0ec00a34bc75e8be3b67d782e688e8 (patch) | |
tree | 2e2aaa20dd2405c5d8bf4a64ee42f013498bf5dd | |
parent | de25335437d37b4f8e6d95b0a5dc927e53c22f09 (diff) | |
download | guix-e98fdeab2e0ec00a34bc75e8be3b67d782e688e8.tar.gz guix-e98fdeab2e0ec00a34bc75e8be3b67d782e688e8.zip |
gnu: ledger-agent: Switch to pyproject-build-system.
* gnu/packages/finance.scm (ledger-agent)[build-system]: Switch to
pyproject.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I83217137e8992a497fae5605ab9f7fc7cf82ba46
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/finance.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 7157d8ab36..33dbefe2b9 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1228,9 +1228,11 @@ the KeepKey Hardware Wallet.") (sha256 (base32 "03zj602m2rln9yvr08dswy56vzkbldp8b074ixwzz525dafblr92")))) - (build-system python-build-system) + (build-system pyproject-build-system) (inputs (list python-ledgerblue python-trezor-agent)) + (native-inputs + (list python-setuptools python-wheel)) (home-page "https://github.com/romanz/trezor-agent") (synopsis "Ledger as hardware SSH/GPG agent") (description "This package allows using Ledger as hardware SSH/GPG agent.") |