This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new fbbb2205fb gnu: python-pygpgme: Update to 0.6.
fbbb2205fb is described below

commit fbbb2205fbaa99dae0b752af39cadfc795523bcf
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Oct 1 16:41:45 2025 +0100

    gnu: python-pygpgme: Update to 0.6.
    
    * gnu/packages/gnupg.scm (python-pygpgme): Update to 0.6.
    [argument] <test-flags>: Skip one failing test.
    [native-inputs]: Remove python-wheel; add pkg-config and python-pytest.
    
    Change-Id: I1b58d556e51c0920773b7139f916fb7adc2cf47a
---
 gnu/packages/gnupg.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index c98d5fc7d2..621954a612 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -47,6 +47,7 @@
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages emacs)
@@ -616,17 +617,26 @@ distributed separately.")
 (define-public python-pygpgme
   (package
     (name "python-pygpgme")
-    (version "0.4")
+    (version "0.6")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pygpgme" version))
        (sha256
         (base32
-         "1px1c5nqsls3fxg0zkyd9sgc5rxpdagvsadnp8fd5bmgrrjka5ws"))))
+         "0k25y3c07bkmz6q87lcbsbf34gva99rmdf5gffd8c1r1sccjif1n"))))
     (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      ;; gpgme.GpgmeError: (<ErrSource.DIRMNGR: 10>, <ErrCode.ENOENT: 32849>,
+      ;; 'No such file or directory')
+      #~(list 
"--deselect=tests/test_import.py::ImportTestCase::test_import_keys")))
     (native-inputs
-     (list gnupg python-setuptools python-wheel))
+     (list gnupg        ;to run gpg-connect-agent
+           pkg-config
+           python-pytest
+           python-setuptools))
     (inputs
      (list gpgme))
     (home-page "https://github.com/jhenstridge/pygpgme";)

Reply via email to