biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / grpcio-health-checking / default.nix
blobe7b6f49f158be88a86f1ba8d107b56573451dad2
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   grpcio,
6   protobuf,
7 }:
9 buildPythonPackage rec {
10   pname = "grpcio-health-checking";
11   version = "1.66.2";
12   format = "setuptools";
14   src = fetchPypi {
15     pname = "grpcio_health_checking";
16     inherit version;
17     hash = "sha256-yQ35YiRWBC7DSV03qzC190ckqsW11VMU8HPu9eJHChM=";
18   };
20   propagatedBuildInputs = [
21     grpcio
22     protobuf
23   ];
25   pythonRelaxDeps = [ "grpcio" ];
27   pythonImportsCheck = [ "grpc_health" ];
29   # no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "Standard Health Checking Service for gRPC";
34     homepage = "https://pypi.org/project/grpcio-health-checking/";
35     license = with licenses; [ asl20 ];
36     maintainers = with maintainers; [ happysalada ];
37   };