Files
nixpkgs/pkgs/development/python-modules/google-cloud-org-policy/default.nix
2021-06-20 16:53:05 +02:00

26 lines
705 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder, google-api-core, proto-plus }:
buildPythonPackage rec {
pname = "google-cloud-org-policy";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-7qVemc7siW/8mO4wUXEKJBt9M18kagRyu/+7DLLe9FM=";
};
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 ];
};
}