summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-16 11:03:00 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:12 +0100
commitd7ae2db9ed8e4b6a1d2bcfd30787779971c039ae (patch)
tree2ddfef4065d5c4232e4c38d9cff11e5f17b70f0f /gnu/packages/python-xyz.scm
parentdd02b9c825770a1754fab0a393d99581848f3cff (diff)
gnu: python-k5test: Update to 0.10.4.
* gnu/packages/python-xyz.scm (python-k5test): Update to 0.10.4. [build-system]: Switch to pyproejct-build-system. [arguments] <phases>: Remove 'apply-upstream-fixes. [inputs]: Add mit-krb5. [propagated-inputs]: Remove python-six, which, and mit-krb5. [native-inputs]: Remove mit-krb5; add python-setuptools. Change-Id: Ife80993e4e78368c5689515f037961c9f6fee703
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm26
1 files changed, 8 insertions, 18 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6a753b6d233..fac0c3687b4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32439,30 +32439,20 @@ memoization.")
(define-public python-k5test
(package
(name "python-k5test")
- (version "0.10.3")
+ (version "0.10.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "k5test" version))
(sha256
- (base32
- "07sp9hc6nkbgzywvr2ivcik03wibs6gmxm1k33l1b8v3mnyfx7cw"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-six
- ;; `which`, `kadmin.local` binaries called inside library
- which mit-krb5))
- (native-inputs (list mit-krb5))
+ (base32 "0c7g9gk3vfgh1wbl4s1v15v283srsixkhgak7lxskxh2cqg4jlp1"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'apply-upstream-fixes
- (lambda* _
- (substitute* "k5test/realm.py"
- ;; Upstream commit f6b302d94dbdce37a1b81cc3faeeac4dc637b0e9.
- (("'kadmin_local'") "'kadmin.local'")
- ;; Upstream commit 3aef84515cf3d1a171c66856c898d0a5cbbd03ea.
- (("\\.stop_daemon") "._stop_daemon")))))))
+ (list #:tests? #f)) ;no tests
+ (native-inputs
+ (list python-setuptools))
+ (inputs
+ (list mit-krb5))
(home-page "https://github.com/pythongssapi/k5test")
(synopsis "Library for setting up self-contained Kerberos 5 environments")
(description