gnu: python-gnupg: Update to 0.5.0.

* gnu/packages/gnupg.scm (python-gnupg): Update to 0.5.0.
[build-system]: Modify to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.

Change-Id: I6bd67d1eff7eba410a37616cc800a62ea87c9961
This commit is contained in:
Danny Milosavljevic 2025-01-25 16:25:34 +01:00
parent 56fbdee16c
commit 1e6ee0f665
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -630,15 +630,15 @@ decrypt messages using the OpenPGP format by making use of GPGME.")
(define-public python-gnupg
(package
(name "python-gnupg")
(version "0.4.8")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-gnupg" version))
(sha256
(base32
"1mq7hljy3bjkxdvh3qx2bv4y0b66l9pmc6i06ys75y7dbjpf2kdn"))))
(build-system python-build-system)
"0ali2zz6k568yzhdgzm8f14v6s5ymihlyffbvfxc9q60gww8wxbh"))))
(build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
@ -654,7 +654,7 @@ decrypt messages using the OpenPGP format by making use of GPGME.")
;; so we disable them.
(invoke "python" "test_gnupg.py" "--no-doctests")))))))
(native-inputs
(list gnupg))
(list gnupg python-setuptools python-wheel))
(home-page "https://pythonhosted.org/python-gnupg/index.html")
(synopsis "Wrapper for the GNU Privacy Guard")
(description