pythonPackages.google_cloud_dataproc: add missing deps

This commit is contained in:
Ruud van Asseldonk 2020-10-10 11:36:05 +02:00 committed by Jon
parent e9874b2ce5
commit 9e51c25baf

View File

@ -4,6 +4,8 @@
, google_api_core , google_api_core
, pytest , pytest
, mock , mock
, libcst
, proto-plus
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -16,7 +18,7 @@ buildPythonPackage rec {
}; };
checkInputs = [ pytest mock ]; checkInputs = [ pytest mock ];
propagatedBuildInputs = [ google_api_core ]; propagatedBuildInputs = [ google_api_core libcst proto-plus ];
checkPhase = '' checkPhase = ''
pytest tests/unit pytest tests/unit