about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/mail
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-01-17 03:01:39 +0000
committerAlyssa Ross <hi@alyssa.is>2020-01-17 03:02:30 +0000
commita06916516d4761c3c2f38083657d923a1e099012 (patch)
tree9e823b775b6042df34c08267408d5df55a488910 /nixpkgs/pkgs/servers/mail
parent388bd5ecef704d7aa423878e28cf46820ba42aaa (diff)
downloadnixlib-a06916516d4761c3c2f38083657d923a1e099012.tar
nixlib-a06916516d4761c3c2f38083657d923a1e099012.tar.gz
nixlib-a06916516d4761c3c2f38083657d923a1e099012.tar.bz2
nixlib-a06916516d4761c3c2f38083657d923a1e099012.tar.lz
nixlib-a06916516d4761c3c2f38083657d923a1e099012.tar.xz
nixlib-a06916516d4761c3c2f38083657d923a1e099012.tar.zst
nixlib-a06916516d4761c3c2f38083657d923a1e099012.zip
python3.pkgs.mailman-web: add missing whoosh dep
This is propagated by Hyperkitty, but it should really only be a
checkInput there.
Diffstat (limited to 'nixpkgs/pkgs/servers/mail')
-rw-r--r--nixpkgs/pkgs/servers/mail/mailman/web.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/servers/mail/mailman/web.nix b/nixpkgs/pkgs/servers/mail/mailman/web.nix
index 63aa7af35859..cbc3da00f87e 100644
--- a/nixpkgs/pkgs/servers/mail/mailman/web.nix
+++ b/nixpkgs/pkgs/servers/mail/mailman/web.nix
@@ -1,5 +1,5 @@
 { buildPythonPackage, lib, fetchgit
-, git, makeWrapper, sassc, hyperkitty, postorius
+, git, makeWrapper, sassc, hyperkitty, postorius, whoosh
 }:
 
 buildPythonPackage rec {
@@ -20,7 +20,7 @@ buildPythonPackage rec {
   '';
 
   nativeBuildInputs = [ git makeWrapper ];
-  propagatedBuildInputs = [ hyperkitty postorius ];
+  propagatedBuildInputs = [ hyperkitty postorius whoosh ];
 
   # Tries to check runtime configuration.
   doCheck = false;