mailmanPackages.python3: fix markdown support

Fixes the issue reported at
https://gitlab.com/mailman/mailman/-/issues/1137. The readme-renderer
package needs cmarkgfm for markdown support. Mailman's postorious needs
this to render the info field of mailing lists.
This commit is contained in:
Franz Pletz 2024-06-20 02:03:32 +02:00
parent 7876d878cf
commit 04952ac5c3
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -28,6 +28,10 @@ python3.override {
hash = "sha256-WF3FFrnrBCphnvCjnD19Vf6BvbTfCaUsnN3g0Hvxqn0=";
};
});
readme-renderer = super.readme-renderer.overridePythonAttrs (_: {
propagatedBuildInputs = [ self.cmarkgfm ];
});
})
overlay;