treewide: replace pythonImportCheck(s) with pythonImportsCheck (#340818)

This commit is contained in:
Robert Schütz
2024-09-10 09:05:25 -07:00
committed by GitHub
4 changed files with 4 additions and 4 deletions
@@ -34,7 +34,7 @@ buildPythonPackage {
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportCheck = "geoparquet";
pythonImportsCheck = [ "geoparquet" ];
doCheck = false; # no tests
@@ -19,7 +19,7 @@ buildPythonPackage rec {
doCheck = false;
pythonImportChecks = [ "pyairports" ];
pythonImportsCheck = [ "pyairports" ];
meta = with lib; {
description = "pyairports is a package which enables airport lookup by 3-letter IATA code.";
@@ -34,7 +34,7 @@ buildPythonPackage rec {
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportCheck = "pyfunctional";
pythonImportsCheck = [ "functional" ];
meta = {
description = "Python library for creating data pipelines with chain functional programming";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ pyee ];
nativeBuildInputs = [ setuptools-scm ];
pythonImportCheck = [ "ffmpeg" ];
pythonImportsCheck = [ "ffmpeg" ];
meta = {
homepage = "https://github.com/jonghwanhyeon/python-ffmpeg";