python312Packages.yoda: 2.0.1 -> 2.0.2
[NixPkgs.git] / pkgs / development / python-modules / grpcio-health-checking / default.nix
blobff73160db9a85d0100d646f7c44737cb18e345fe
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   grpcio,
6   protobuf,
7 }:
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
12 buildPythonPackage rec {
13   pname = "grpcio-health-checking";
14   version = "1.67.0";
15   format = "setuptools";
17   src = fetchPypi {
18     pname = "grpcio_health_checking";
19     inherit version;
20     hash = "sha256-PepxXVboJQ/wW6Se9RF/g2skD/N5vkY2DCbO/ZydsRo=";
21   };
23   propagatedBuildInputs = [
24     grpcio
25     protobuf
26   ];
28   pythonRelaxDeps = [ "grpcio" ];
30   pythonImportsCheck = [ "grpc_health" ];
32   # no tests
33   doCheck = false;
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   };