1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 grpcio, 6 protobuf, 7}: 8 9# This package should be updated together with the main grpc package and other 10# related python grpc packages. 11# nixpkgs-update: no auto update 12buildPythonPackage rec { 13 pname = "grpcio-health-checking"; 14 version = "1.74.0"; 15 format = "setuptools"; 16 17 src = fetchPypi { 18 pname = "grpcio_health_checking"; 19 inherit version; 20 hash = "sha256-1nSUUdTO9UPD9iYK6ahshLmrAqkkIc7K5zpjLn/pIL8="; 21 }; 22 23 propagatedBuildInputs = [ 24 grpcio 25 protobuf 26 ]; 27 28 pythonRelaxDeps = [ "grpcio" ]; 29 30 pythonImportsCheck = [ "grpc_health" ]; 31 32 # no tests 33 doCheck = false; 34 35 meta = with lib; { 36 description = "Standard Health Checking Service for gRPC"; 37 homepage = "https://pypi.org/project/grpcio-health-checking/"; 38 license = with licenses; [ asl20 ]; 39 maintainers = with maintainers; [ happysalada ]; 40 }; 41}