python310Packages.dvc-azure: fix pythonImportsCheck usage

This commit is contained in:
Mario Rodas 2023-05-13 04:20:00 +00:00
parent a49541f0c7
commit 52f9267369

View File

@ -2,6 +2,7 @@
, adlfs , adlfs
, azure-identity , azure-identity
, buildPythonPackage , buildPythonPackage
, dvc-objects
, fetchPypi , fetchPypi
, knack , knack
, pythonRelaxDepsHook , pythonRelaxDepsHook
@ -23,13 +24,13 @@ buildPythonPackage rec {
nativeBuildInputs = [ setuptools-scm pythonRelaxDepsHook ]; nativeBuildInputs = [ setuptools-scm pythonRelaxDepsHook ];
propagatedBuildInputs = [ propagatedBuildInputs = [
adlfs azure-identity knack adlfs azure-identity dvc-objects knack
]; ];
# Network access is needed for tests # Network access is needed for tests
doCheck = false; doCheck = false;
pythonCheckImports = [ "dvc_azure" ]; pythonImportsCheck = [ "dvc_azure" ];
meta = with lib; { meta = with lib; {
description = "azure plugin for dvc"; description = "azure plugin for dvc";