mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
6c2c8e566d
commit
fbbb2205fb
1 changed files with 13 additions and 3 deletions
|
@ -47,6 +47,7 @@
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages crypto)
|
#:use-module (gnu packages crypto)
|
||||||
#:use-module (gnu packages emacs)
|
#:use-module (gnu packages emacs)
|
||||||
|
@ -616,17 +617,26 @@ distributed separately.")
|
||||||
(define-public python-pygpgme
|
(define-public python-pygpgme
|
||||||
(package
|
(package
|
||||||
(name "python-pygpgme")
|
(name "python-pygpgme")
|
||||||
(version "0.4")
|
(version "0.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pygpgme" version))
|
(uri (pypi-uri "pygpgme" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1px1c5nqsls3fxg0zkyd9sgc5rxpdagvsadnp8fd5bmgrrjka5ws"))))
|
"0k25y3c07bkmz6q87lcbsbf34gva99rmdf5gffd8c1r1sccjif1n"))))
|
||||||
(build-system pyproject-build-system)
|
(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
|
(native-inputs
|
||||||
(list gnupg python-setuptools python-wheel))
|
(list gnupg ;to run gpg-connect-agent
|
||||||
|
pkg-config
|
||||||
|
python-pytest
|
||||||
|
python-setuptools))
|
||||||
(inputs
|
(inputs
|
||||||
(list gpgme))
|
(list gpgme))
|
||||||
(home-page "https://github.com/jhenstridge/pygpgme")
|
(home-page "https://github.com/jhenstridge/pygpgme")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue