Merge pull request #309357 from adamcstephens/ydiff/fix

python3Packages.ydiff: remove doc-check from tests due to distutils removal
This commit is contained in:
Martin Weinelt 2024-05-05 21:56:56 +02:00 committed by GitHub
commit 8bc61d8848
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
'';