From ce6b2419be6e16cc6b9096c99798a0d365b16486 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 4 Feb 2020 14:41:31 +0100 Subject: [PATCH] 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. --- pkgs/servers/mail/mailman/wrapped.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/mail/mailman/wrapped.nix b/pkgs/servers/mail/mailman/wrapped.nix index 2a620763d876..f7b2b16bc289 100644 --- a/pkgs/servers/mail/mailman/wrapped.nix +++ b/pkgs/servers/mail/mailman/wrapped.nix @@ -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 ''