mailman-wrapper: crazy hack to work around the missing urllib3 dependency

Please remove the explicit urllib3 dependency from this expression again once
https://github.com/NixOS/nixpkgs/issues/79222 is fixed.
This commit is contained in:
Peter Simons 2020-02-04 14:41:31 +01:00
parent 5717f312a4
commit ce6b2419be

View File

@ -15,6 +15,6 @@ runCommand "${mailman.name}-wrapped" {
cd "${mailman}/bin"
for exe in *; do
makeWrapper "${mailman}/bin/$exe" "$out/bin/$exe" \
--set PYTHONPATH ${makePythonPath ([ mailman ] ++ archivers)}
--set PYTHONPATH ${makePythonPath ([ mailman python3.pkgs.urllib3 ] ++ archivers)}
done
''