me
/
guix
Archived
1
0
Fork 0

gnu: python-k5test: Apply unreleased upstream fix.

* gnu/packages/python-xyz.scm (python-k5test) [arguments]<#:phases>:
Rename phase to reflect what it actually does, add another substitute*
expression.
master
Lars-Dominik Braun 2021-06-30 10:05:50 +02:00
parent 387b66b643
commit 33b54ef2a5
No known key found for this signature in database
GPG Key ID: F663943E08D8092A
1 changed files with 5 additions and 2 deletions

View File

@ -23286,10 +23286,13 @@ and cuts down boilerplate code when testing libraries for asyncio.")
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-paths
(add-after 'unpack 'apply-upstream-fixes
(lambda* _
(substitute* "k5test/realm.py"
(("'kadmin_local'") "'kadmin.local'")))))))
;; Upstream commit f6b302d94dbdce37a1b81cc3faeeac4dc637b0e9.
(("'kadmin_local'") "'kadmin.local'")
;; Upstream commit 3aef84515cf3d1a171c66856c898d0a5cbbd03ea.
(("\\.stop_daemon") "._stop_daemon")))))))
(home-page "https://github.com/pythongssapi/k5test")
(synopsis "Library for setting up self-contained Kerberos 5 environments")
(description