Commit e161990d authored by Alyssa Ross's avatar Alyssa Ross Committed by Anderson Torres
Browse files

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: 23128611 ("docutils: 0.19 -> 0.20.1")
parent f8c26c97
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
, fetchpatch
, python3
, fetchPypi
, docutils
, sphinx
, postfix
, lynx
@@ -41,7 +40,6 @@ buildPythonPackage rec {
  ];

  checkInputs = [
    docutils
    sphinx
  ];