55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
google-api-core,
|
||
|
proto-plus,
|
||
|
protobuf,
|
||
|
pytest-asyncio,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "google-cloud-org-policy";
|
||
|
version = "1.11.1";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
pname = "google_cloud_org_policy";
|
||
|
inherit version;
|
||
|
hash = "sha256-E+H/y5UGlWselMwoHU4B9APkmEeQnTLxhMelowEJsa8=";
|
||
|
};
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
dependencies = [
|
||
|
google-api-core
|
||
|
proto-plus
|
||
|
protobuf
|
||
|
] ++ google-api-core.optional-dependencies.grpc;
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytest-asyncio
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
# Prevent google directory from shadowing google imports
|
||
|
preCheck = ''
|
||
|
rm -r google
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "google.cloud.orgpolicy" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Protobufs for Google Cloud Organization Policy";
|
||
|
homepage = "https://github.com/googleapis/python-org-policy";
|
||
|
changelog = "https://github.com/googleapis/python-org-policy/blob/v${version}/CHANGELOG.md";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ austinbutler ];
|
||
|
};
|
||
|
}
|