nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 33 lines 700 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, grpcio 5, googleapis-common-protos 6}: 7 8buildPythonPackage rec { 9 pname = "grpc-google-iam-v1"; 10 version = "0.12.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0bfb5b56f648f457021a91c0df0db4934b6e0c300bd0f2de2333383fe958aa72"; 15 }; 16 17 propagatedBuildInputs = [ grpcio googleapis-common-protos ]; 18 19 # no tests run 20 doCheck = false; 21 22 pythonImportsCheck = [ 23 "google.iam" 24 "google.iam.v1" 25 ]; 26 27 meta = with lib; { 28 description = "GRPC library for the google-iam-v1 service"; 29 homepage = "https://github.com/googleapis/googleapis"; 30 license = licenses.asl20; 31 maintainers = with maintainers; [ SuperSandro2000 ]; 32 }; 33}