pythonPackages.google_cloud_org_policy: Rename to fit other packages

This commit is contained in:
Sandro Jäckel
2021-01-05 10:55:11 +01:00
parent cb58e7539f
commit 094127b5c9
2 changed files with 1 additions and 3 deletions

View File

@@ -1,27 +0,0 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, google_api_core }:
buildPythonPackage rec {
pname = "google-cloud-org-policy";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "0ncgcnbvmgqph54yh2pjx2hh82gnkhsrw5yirp4wlf7jclh6j9xh";
};
disabled = pythonOlder "3.5";
propagatedBuildInputs = [ google_api_core ];
# 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 ];
};
}