1{ lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core, proto-plus }:
2
3buildPythonPackage rec {
4 pname = "google-cloud-org-policy";
5 version = "0.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "b463704affab327c1d3fa4af280a858635b5f59a88456b2a08db62a336a352aa";
10 };
11
12 propagatedBuildInputs = [ google-api-core proto-plus ];
13
14 # No tests in repo
15 doCheck = false;
16
17 pythonImportsCheck = [ "google.cloud.orgpolicy" ];
18
19 meta = with lib; {
20 description = "Protobufs for Google Cloud Organization Policy.";
21 homepage = "https://github.com/googleapis/python-org-policy";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ austinbutler SuperSandro2000 ];
24 };
25}