{ stdenv , buildPythonPackage , fetchPypi , google_api_core , pytest , mock }: buildPythonPackage rec { pname = "google-cloud-videointelligence"; version = "1.12.1"; src = fetchPypi { inherit pname version; sha256 = "66d0a63d27e83656b1b4e0205d32725e4c58db174118badba164bb7d05a66981"; }; checkInputs = [ pytest mock ]; propagatedBuildInputs = [ google_api_core ]; checkPhase = '' pytest tests/unit ''; meta = with stdenv.lib; { description = "Google Cloud Video Intelligence API client library"; homepage = https://github.com/GoogleCloudPlatform/google-cloud-python; license = licenses.asl20; maintainers = [ maintainers.costrouc ]; }; }