python3Packages.clarifai-grpc: fix build

This commit is contained in:
wxt 2024-11-13 21:06:46 +08:00
parent de80afd0e3
commit f1dbe9cd97
No known key found for this signature in database
GPG Key ID: F62181757D8BF693

View File

@ -33,16 +33,20 @@ buildPythonPackage rec {
requests
];
pythonRelaxDeps = [
"grpcio"
];
# almost all tests require network access
doCheck = false;
pythonImportsCheck = [ "clarifai_grpc" ];
meta = with lib; {
meta = {
description = "Clarifai gRPC API Client";
homepage = "https://github.com/Clarifai/clarifai-python-grpc";
changelog = "https://github.com/Clarifai/clarifai-python-grpc/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ natsukium ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ natsukium ];
};
}