Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 33 lines 749 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, grpc_google_iam_v1 5, google_api_core 6, google_cloud_core 7, pytest 8, mock 9}: 10 11buildPythonPackage rec { 12 pname = "google-cloud-bigtable"; 13 version = "0.32.2"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "40d1fc8009c228f70bd0e2176e73a3f101051ad73889b3d25a5df672c029a8bd"; 18 }; 19 20 checkInputs = [ pytest mock ]; 21 propagatedBuildInputs = [ grpc_google_iam_v1 google_api_core google_cloud_core ]; 22 23 checkPhase = '' 24 pytest tests/unit 25 ''; 26 27 meta = with stdenv.lib; { 28 description = "Google Cloud Bigtable API client library"; 29 homepage = https://github.com/GoogleCloudPlatform/google-cloud-python; 30 license = licenses.asl20; 31 maintainers = [ maintainers.costrouc ]; 32 }; 33}