diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-04-20 00:15:41 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:36:38 +0100 |
| commit | e627d94c04ceaaf8ca0a58c46014e0ea902bb235 (patch) | |
| tree | a47698fcc1d1774c352f021b49de813e9a6a57f1 /gnu/packages/python-web.scm | |
| parent | 27f5536e0290c9ca24709174a416991837e0e4ab (diff) | |
gnu: python-ldaptor: Fix build on python@3.12.
* gnu/packages/python-web.scm (python-ldaptor)[arguments]<#:phases>:
Add phase python-3.12-patch.
Change-Id: I10157ab41a5a5f78c4166a5c0a76ab9028ffd54d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 04a75a5f2f..8310dd4718 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1820,6 +1820,11 @@ reusable library for parsing, manipulating, and generating URIs.") "ldaptor") #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'python-3.12-patch + (lambda _ + (substitute* "ldaptor/config.py" + (("SafeConfigParser") + "ConfigParser")))) (add-before 'check 'disable-failing-tests (lambda _ ;; Testing with Twisted 22.4 results in infinite loop creating |
