nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 47 lines 939 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 grpcio, 7 protobuf, 8}: 9 10# This package should be updated together with the main grpc package and other 11# related python grpc packages. 12# nixpkgs-update: no auto update 13buildPythonPackage rec { 14 pname = "grpcio-channelz"; 15 version = "1.76.0"; 16 pyproject = true; 17 18 src = fetchPypi { 19 pname = "grpcio_channelz"; 20 inherit version; 21 hash = "sha256-KrFe97IlKpujHfUAu+KVzlMQqLAepvbWehcXLZFKQag="; 22 }; 23 24 build-system = [ setuptools ]; 25 26 pythonRelaxDeps = [ 27 "grpcio" 28 "protobuf" 29 ]; 30 31 dependencies = [ 32 grpcio 33 protobuf 34 ]; 35 36 pythonImportsCheck = [ "grpc_channelz" ]; 37 38 # no tests 39 doCheck = false; 40 41 meta = { 42 description = "Channel Level Live Debug Information Service for gRPC"; 43 homepage = "https://pypi.org/project/grpcio-channelz"; 44 license = with lib.licenses; [ asl20 ]; 45 maintainers = with lib.maintainers; [ happysalada ]; 46 }; 47}