mailmanPackages.hyperkitty: backport Django 5.2 compat

This commit is contained in:
Alyssa Ross
2026-02-21 16:33:13 +01:00
parent 209489128e
commit bbd173f6bb
+11
View File
@@ -30,8 +30,19 @@ buildPythonPackage rec {
url = "https://gitlab.com/mailman/hyperkitty/-/commit/6c3d402dc0981e545081a3baf13db7e491356e75.patch";
hash = "sha256-ep9cFZe9/sIfIP80pLBOMYkJKWvNT7DRqg80DQSdRFw=";
})
# Fix test with Django 5.2
(fetchpatch {
url = "https://gitlab.com/mailman/hyperkitty/-/commit/e815be11752ac6a3e839b155f0c43808619c56b0.patch";
hash = "sha256-fsJyNsh3l5iR9WgsiEsHlptkN+nlWoop0m2STyucDEc=";
})
];
prePatch = ''
# Upstream: https://gitlab.com/mailman/hyperkitty/-/commit/b8b7536c2cb7380ec55ed62140617cff8ae36b1d
substituteInPlace pyproject.toml \
--replace-fail '"django>=4.2,<5.1"' '"django>=4.2,<5.3"'
'';
build-system = [
pdm-backend
];