~ruther/guix-local

1e6ee0f665d84d89f0f58fc933a896b5e72d852c — Danny Milosavljevic 1 year, 3 months ago 56fbdee
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
1 files changed, 4 insertions(+), 4 deletions(-)

M gnu/packages/gnupg.scm
M gnu/packages/gnupg.scm => gnu/packages/gnupg.scm +4 -4
@@ 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