guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 03236231e914f6fc656de0517d55d1dab2dccf8e
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Dec 27 09:49:33 2025 +0100

    gnu: trezor-gpg-pinentry-tk: Switch to pyproject.
    
    * gnu/packages/finance.scm (trezor-gpg-pinentry-tk):
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:tests?>: Disable them.
    [native-inputs]: Add python-setuptools.
    [inputs]: Improve style.
    
    Change-Id: Ia0f0675f0550004b5c5bf596dc3958b8891695be
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/finance.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 21369dcd9d..de808652d5 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -1149,11 +1149,10 @@ Ledger Nano as a hardware SSH/GPG agent.")
        (file-name (git-file-name name version))
        (sha256
         (base32 "1mblx4favmw4nf7k9rfl00ivv77kgdiwghyz4xv5cp0v410kjaqc"))))
-    (build-system python-build-system)
-    (arguments
-     `(#:tests? #f))        ; No test suite.
-    (inputs
-     `(("python-tkinter" ,python "tk")))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f))      ; No test suite.
+    (native-inputs (list python-setuptools))
+    (inputs (list (list python "tk")))
     (home-page "https://github.com/rendaw/trezor-gpg-pinentry-tk";)
     (synopsis "GPG pinentry program for use with @code{trezor-agent}")
     (description

Reply via email to