nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 41 lines 892 B view raw
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.78.0"; 15 format = "setuptools"; 16 17 src = fetchPypi { 18 pname = "grpcio_health_checking"; 19 inherit version; 20 hash = "sha256-eFJtXGC5uZ/RiVS4n4bXADPHAulq1szJdJuvFhNpebM="; 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 = { 36 description = "Standard Health Checking Service for gRPC"; 37 homepage = "https://pypi.org/project/grpcio-health-checking/"; 38 license = with lib.licenses; [ asl20 ]; 39 maintainers = with lib.maintainers; [ happysalada ]; 40 }; 41}