summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-01-25 16:25:34 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-01-25 17:24:11 +0100
commit1e6ee0f665d84d89f0f58fc933a896b5e72d852c (patch)
treeff66668560304538759e0b8831303f334298e60a
parent56fbdee16c4757dddb96b3d3c483c5f61026f14c (diff)
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
-rw-r--r--gnu/packages/gnupg.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 6edfa1d3a4..633600870b 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -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