depot/third_party/nixpkgs/pkgs/development/python-modules/grpcio-testing/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

51 lines
936 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
grpcio,
protobuf,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "grpcio-testing";
version = "1.65.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "grpcio_testing";
inherit version;
hash = "sha256-iCbY9Ika+NWuBuFqt+FG+8VZTvQZMj4wMW9NDdBnWcY=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail '"grpcio>={version}".format(version=grpc_version.VERSION)' '"grpcio"'
'';
build-system = [ setuptools ];
pythonRelaxDeps = [
"protobuf"
];
dependencies = [
grpcio
protobuf
];
pythonImportsCheck = [ "grpc_testing" ];
# Module has no tests
doCheck = false;
meta = with lib; {
description = "Testing utilities for gRPC Python";
homepage = "https://grpc.io/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}