2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-11-02 14:15:33 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, grpcio
|
2021-03-05 16:20:42 +01:00
|
|
|
, googleapis-common-protos
|
2018-11-02 14:15:33 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "grpc-google-iam-v1";
|
2019-10-24 08:47:34 +02:00
|
|
|
version = "0.12.3";
|
2018-11-02 14:15:33 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 08:47:34 +02:00
|
|
|
sha256 = "0bfb5b56f648f457021a91c0df0db4934b6e0c300bd0f2de2333383fe958aa72";
|
2018-11-02 14:15:33 -04:00
|
|
|
};
|
|
|
|
|
2021-03-05 16:20:42 +01:00
|
|
|
propagatedBuildInputs = [ grpcio googleapis-common-protos ];
|
2018-11-02 14:15:33 -04:00
|
|
|
|
2021-08-16 12:54:23 +02:00
|
|
|
# no tests run
|
2019-10-26 17:09:37 -07:00
|
|
|
doCheck = false;
|
2021-08-16 12:54:23 +02:00
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"google.iam"
|
|
|
|
"google.iam.v1"
|
|
|
|
];
|
2019-10-26 17:09:37 -07:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-11-02 14:15:33 -04:00
|
|
|
description = "GRPC library for the google-iam-v1 service";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/googleapis/googleapis";
|
2018-11-02 14:15:33 -04:00
|
|
|
license = licenses.asl20;
|
2021-08-16 12:54:23 +02:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-11-02 14:15:33 -04:00
|
|
|
};
|
|
|
|
}
|