python3Packages.ydiff: remove doc-check from tests due to distutils removal

This commit is contained in:
Adam Stephens
2024-05-05 15:33:06 -04:00
parent 66ae2791db
commit 88dc68e82b
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, docutils, pygments
{ lib, buildPythonPackage, fetchPypi, pygments
, gitMinimal, mercurial, subversion, patchutils, less
}:
@@ -26,11 +26,11 @@ buildPythonPackage rec {
patchShebangs tests/*.sh
'';
nativeCheckInputs = [ docutils pygments ];
nativeCheckInputs = [ pygments ];
checkPhase = ''
runHook preCheck
make doc-check reg # We don't want the linter or coverage check.
make reg # We don't want the linter or coverage check.
runHook postCheck
'';