about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-02-04 14:41:31 +0100
committerPeter Simons <simons@cryp.to>2020-02-04 14:43:56 +0100
commitce6b2419be6e16cc6b9096c99798a0d365b16486 (patch)
treef9eebbe92fd61ef3f902e446e632091d1aca74fd /pkgs/servers
parent5717f312a47be2e0dc4c44863c162f0cb8cd03a0 (diff)
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.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/mail/mailman/wrapped.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/mail/mailman/wrapped.nix b/pkgs/servers/mail/mailman/wrapped.nix
index 2a620763d876b..f7b2b16bc289c 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
 ''