depot/third_party/nixpkgs/pkgs/development/python-modules/grpc-google-iam-v1/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

49 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
googleapis-common-protos,
grpcio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "grpc-google-iam-v1";
version = "0.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-grpc-google-iam-v1";
rev = "refs/tags/v${version}";
hash = "sha256-pmwHDzOaXrgqXZiaxIn01CtiAG+XRBGr8BgzbG/F1uw=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
grpcio
googleapis-common-protos
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"google.iam"
"google.iam.v1"
];
pytestFlagsArray = [
"-W"
"ignore::DeprecationWarning"
];
meta = with lib; {
description = "GRPC library for the google-iam-v1 service";
homepage = "https://github.com/googleapis/python-grpc-google-iam-v1";
changelog = "https://github.com/googleapis/python-grpc-google-iam-v1/releases/tag/v${version}";
license = licenses.asl20;
maintainers = [ ];
};
}