From 88dc68e82b1d65e728f73e1e8c24d9ceafc1d5d5 Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Sun, 5 May 2024 15:33:06 -0400 Subject: [PATCH] python3Packages.ydiff: remove doc-check from tests due to distutils removal --- pkgs/development/python-modules/ydiff/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ydiff/default.nix b/pkgs/development/python-modules/ydiff/default.nix index ffa1f3cefad8..fa91086ed5d5 100644 --- a/pkgs/development/python-modules/ydiff/default.nix +++ b/pkgs/development/python-modules/ydiff/default.nix @@ -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 '';