python310Packages.dvc-s3: fix pythonImportsCheck usage

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

View file

@ -2,6 +2,7 @@
, aiobotocore
, boto3
, buildPythonPackage
, dvc-objects
, fetchPypi
, flatten-dict
, pythonRelaxDepsHook
@ -29,13 +30,13 @@ buildPythonPackage rec {
nativeBuildInputs = [ setuptools-scm pythonRelaxDepsHook ];
propagatedBuildInputs = [
aiobotocore boto3 flatten-dict s3fs
aiobotocore boto3 dvc-objects flatten-dict s3fs
];
# Network access is needed for tests
doCheck = false;
pythonCheckImports = [ "dvc_s3" ];
pythonImportsCheck = [ "dvc_s3" ];
meta = with lib; {
description = "s3 plugin for dvc";