python311Packages.pillow: drop pyroma test dependency

It is used for code quality, but the tests case is disabled and pyroma
is not compatible with Python 3.12.
This commit is contained in:
Martin Weinelt 2023-12-05 02:12:39 +01:00
parent 96a328c424
commit 8037c388b0
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
, fetchPypi
, isPyPy
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, libxcrypt, tcl, lcms2, tk, libX11
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook, setuptools
, libxcb, openjpeg, libimagequant, numpy, pytestCheckHook, setuptools
# for passthru.tests
, imageio, matplotlib, pilkit, pydicom, reportlab
}@args:

View File

@ -37,7 +37,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ olefile ]
++ lib.optionals (lib.versionAtLeast version "8.2.0") [ defusedxml ];
nativeCheckInputs = [ pytestCheckHook pyroma numpy ];
nativeCheckInputs = [ pytestCheckHook numpy ];
nativeBuildInputs = [ setuptools ];