Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, grpcio 5}: 6 7buildPythonPackage rec { 8 pname = "grpcio-gcp"; 9 version = "0.2.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "e292605effc7da39b7a8734c719afb12ec4b5362add3528d8afad3aa3aa9057c"; 14 }; 15 16 propagatedBuildInputs = [ grpcio ]; 17 18 meta = with lib; { 19 description = "gRPC extensions for Google Cloud Platform"; 20 homepage = "https://grpc.io"; 21 license = licenses.asl20; 22 maintainers = [ maintainers.costrouc ]; 23 }; 24}