about summary refs log tree commit diff
path: root/pkgs/servers/mail/mailman/package.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-08-31 10:52:59 +0000
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-31 14:18:22 +0000
commite161990d40c97c649a5e7df9d3347c0ea3896bde (patch)
treeb1d43c6972f3cedbc99f0e8c1015c4f94e884f2f /pkgs/servers/mail/mailman/package.nix
parentf8c26c97e9f31a94e75f94c79e3574035cdc1e8a (diff)
mailman: remove docutils input
In Nixpkgs, we currently have the strange situation where
pkgs.docutils (which was being used here) is on a different version
than pkgs.python3.pkgs.docutils (which is propagated from sphinx).
This led to a conflict here and a build failure.

Since we'd need to provide the same version as propagated by sphinx
anyway, let's just remove the explicit docutils check input and only
use the version propagated by sphinx, avoiding this kind of conflict
in future.

Fixes: 2312861130ec ("docutils: 0.19 -> 0.20.1")
Diffstat (limited to 'pkgs/servers/mail/mailman/package.nix')
-rw-r--r--pkgs/servers/mail/mailman/package.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/servers/mail/mailman/package.nix b/pkgs/servers/mail/mailman/package.nix
index c92e7a2e39202..20c1771d089fc 100644
--- a/pkgs/servers/mail/mailman/package.nix
+++ b/pkgs/servers/mail/mailman/package.nix
@@ -2,7 +2,6 @@
 , fetchpatch
 , python3
 , fetchPypi
-, docutils
 , sphinx
 , postfix
 , lynx
@@ -41,7 +40,6 @@ buildPythonPackage rec {
   ];
 
   checkInputs = [
-    docutils
     sphinx
   ];