849ee4d900
GitOrigin-RevId: 9e377a6ce42dccd9b624ae4ce8f978dc892ba0e2
25 lines
705 B
Nix
25 lines
705 B
Nix
{ lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core, proto-plus }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-org-policy";
|
|
version = "0.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-tGNwSv+rMnwdP6SvKAqFhjW19ZqIRWsqCNtiozajUqo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ google-api-core proto-plus ];
|
|
|
|
# No tests in repo
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "google.cloud.orgpolicy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Protobufs for Google Cloud Organization Policy.";
|
|
homepage = "https://github.com/googleapis/python-org-policy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ austinbutler SuperSandro2000 ];
|
|
};
|
|
}
|