summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-01 16:41:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-01 16:43:02 +0100
commitfbbb2205fbaa99dae0b752af39cadfc795523bcf (patch)
treec67b3b6e6b59ffb41ed193aa13ad46929c3c1cd7 /gnu
parent6c2c8e566d5d30547e3d695d369b7ce6e2e263ab (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gnupg.scm16
1 files 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")