summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-15 19:36:25 +0100
committerAndreas Enge <andreas@enge.fr>2025-12-17 11:20:20 +0100
commit4d617d8c11ca8a104c8bd75e14d12ecb77fa1d57 (patch)
tree7651f44c539c52b6ee0f6b2ee20f15640a0928fb /gnu
parent7e42aacfc846f81cb8db575de11f28bff6246eb1 (diff)
gnu: keepkey-agent: Switch to pyproject-build-system.
* gnu/packages/finance.scm (keepkey-agent): Switch to pyproject-build-system. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable tests. [native-inputs]: Add python-setuptools. Change-Id: If83aa4cf17ebf3bac374e161d2fe2d7f4e92693e Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/finance.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index b6b6ce35338..b1313808a63 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -1486,12 +1486,18 @@ the KeepKey Hardware Wallet.")
(version "0.9.0")
(source
(origin
+ ;; TODO: Figure out how to build from
+ ;; https://github.com/romanz/trezor-agent
(method url-fetch)
(uri (pypi-uri "keepkey_agent" version))
(sha256
(base32
"03779gvlx70i0nnry98i4pl1d92604ix5x6jgdfkrdgzqbh5vj27"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests in PyPI package
+ (native-inputs
+ (list python-setuptools))
(inputs
(list python-keepkey python-packaging python-trezor-agent))
(home-page "https://github.com/romanz/trezor-agent")