{ stdenv , buildPythonPackage , fetchPypi , google_api_core , google_cloud_core , pytest , mock }: buildPythonPackage rec { pname = "google-cloud-trace"; version = "1.1.0"; src = fetchPypi { inherit pname version; sha256 = "1bd1ee5c274a584929913d9118134e01afe106644cb749ccc3111e1a38a96cd3"; }; checkInputs = [ pytest mock ]; propagatedBuildInputs = [ google_api_core google_cloud_core ]; checkPhase = '' pytest tests/unit ''; meta = with stdenv.lib; { description = "Stackdriver Trace API client library"; homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python"; license = licenses.asl20; maintainers = [ maintainers.costrouc ]; }; }