My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/googleapis-common-protos/default.nix

36 lines
736 B

{ lib
, buildPythonPackage
, fetchPypi
, grpc
, protobuf
}:
buildPythonPackage rec {
pname = "googleapis-common-protos";
version = "1.56.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-wlhzxHJ5OHz9y9r6NhSYh5AdNiAstkWg5PKWhr9uRBc=";
};
propagatedBuildInputs = [ grpc protobuf ];
# does not contain tests
doCheck = false;
pythonImportsCheck = [
"google.api"
"google.logging"
"google.longrunning"
"google.rpc"
"google.type"
];
meta = with lib; {
description = "Common protobufs used in Google APIs";
homepage = "https://github.com/googleapis/python-api-common-protos";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}