50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
googleapis-common-protos,
|
||
|
grpcio,
|
||
|
protobuf,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
# This package should be updated together with the main grpc package and other
|
||
|
# related python grpc packages.
|
||
|
# nixpkgs-update: no auto update
|
||
|
buildPythonPackage rec {
|
||
|
pname = "grpcio-status";
|
||
|
version = "1.66.2";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
pname = "grpcio_status";
|
||
|
inherit version;
|
||
|
hash = "sha256-+1XLtcLmcGL3pNXJnkidB0+1fphnjVw8ZpKi102J6a4=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace setup.py \
|
||
|
--replace 'protobuf>=4.21.6' 'protobuf'
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
googleapis-common-protos
|
||
|
grpcio
|
||
|
protobuf
|
||
|
];
|
||
|
|
||
|
# Projec thas no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "grpc_status" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "GRPC Python status proto mapping";
|
||
|
homepage = "https://github.com/grpc/grpc/tree/master/src/python/grpcio_status";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|