diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-21 13:23:34 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-21 14:19:16 +0100 |
commit | a010f584925fab01f5b9756f9100417de403ffff (patch) | |
tree | 5466eb5c1a113a124b316759d346b9220ab6dd43 | |
parent | ef9c58e4f27284e7d14d86efb09df3cb44e79b27 (diff) | |
download | guix-a010f584925fab01f5b9756f9100417de403ffff.tar.gz guix-a010f584925fab01f5b9756f9100417de403ffff.zip |
gnu: python-kerberos: Update to 1.3.1.
* gnu/packages/python-crypto.scm (python-kerberos): Update to 1.3.1.
[build-system]: Switch to pyproject.
[arguments] <tests?>: Switch off as no in PyPI and require networking to
pass.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I1d4a9a34b54426027cdbdbc611bd883500ac38fd
-rw-r--r-- | gnu/packages/python-crypto.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 93ae312d5d..f3fdd68c15 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -232,20 +232,24 @@ making them easy to handle and incorporate into other protocols.") (define-public python-kerberos (package (name "python-kerberos") - (version "1.3.0") + (version "1.3.1") (source (origin (method url-fetch) (uri (pypi-uri "kerberos" version)) (sha256 - (base32 - "19663qxmma0i8bfbjc2iwy5hgq0g4pfb75r023v5dps68zfvffgh")))) - (build-system python-build-system) + (base32 "0b0a8rrwgfjrslz3jd3r5l7vr7jx5bc17sq0dbwn002f58a4dl6d")))) + (build-system pyproject-build-system) + (arguments + ;; No tests in PyPI, provided in Git but all of them require networking. + (list #:tests? #f)) + (native-inputs + (list python-setuptools + python-wheel)) (inputs (list mit-krb5)) (home-page "https://github.com/apple/ccs-pykerberos") - (synopsis - "Python Kerberos library used by CalendarServer") + (synopsis "Python Kerberos library used by CalendarServer") (description "This Python package is a high-level wrapper for Kerberos (GSSAPI) operations. The goal is to avoid having to build a module that wraps the |