mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
ef9c58e4f2
commit
a010f58492
1 changed files with 10 additions and 6 deletions
|
@ -232,20 +232,24 @@ making them easy to handle and incorporate into other protocols.")
|
||||||
(define-public python-kerberos
|
(define-public python-kerberos
|
||||||
(package
|
(package
|
||||||
(name "python-kerberos")
|
(name "python-kerberos")
|
||||||
(version "1.3.0")
|
(version "1.3.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "kerberos" version))
|
(uri (pypi-uri "kerberos" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0b0a8rrwgfjrslz3jd3r5l7vr7jx5bc17sq0dbwn002f58a4dl6d"))))
|
||||||
"19663qxmma0i8bfbjc2iwy5hgq0g4pfb75r023v5dps68zfvffgh"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-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
|
(inputs
|
||||||
(list mit-krb5))
|
(list mit-krb5))
|
||||||
(home-page "https://github.com/apple/ccs-pykerberos")
|
(home-page "https://github.com/apple/ccs-pykerberos")
|
||||||
(synopsis
|
(synopsis "Python Kerberos library used by CalendarServer")
|
||||||
"Python Kerberos library used by CalendarServer")
|
|
||||||
(description
|
(description
|
||||||
"This Python package is a high-level wrapper for Kerberos (GSSAPI)
|
"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
|
operations. The goal is to avoid having to build a module that wraps the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue