Unverified Commit 5da2cb42 authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

python3Packages.google-cloud-error-reporting: relax dependency on protobuf (#404477)

parents 1be603cf 447ec64d
Loading
Loading
Loading
Loading
+20 −14
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,

  # build-system
  setuptools,

  # dependencies
  google-api-core,
  google-cloud-logging,
  google-cloud-testutils,
  mock,
  proto-plus,
  protobuf,

  # testing
  google-cloud-testutils,
  mock,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
@@ -19,16 +24,17 @@ buildPythonPackage rec {
  version = "1.11.1";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    pname = "google_cloud_error_reporting";
    inherit version;
    hash = "sha256-1ir8o3jwzmfi7E8QPTn3E6RGtTOL9KM05NRaMRYzh5A=";
  src = fetchFromGitHub {
    owner = "googleapis";
    repo = "python-error-reporting";
    tag = "v${version}";
    hash = "sha256-z1ogY4W4RGKv0h2jW0jVpIHUY1X3P0Vw++3jYtnYTRA=";
  };

  build-system = [ setuptools ];

  pythonRelaxDeps = [ "protobuf" ];

  dependencies = [
    google-api-core
    google-cloud-logging
@@ -61,11 +67,11 @@ buildPythonPackage rec {
    "google.cloud.errorreporting_v1beta1"
  ];

  meta = with lib; {
  meta = {
    description = "Stackdriver Error Reporting API client library";
    homepage = "https://github.com/googleapis/python-error-reporting";
    changelog = "https://github.com/googleapis/python-error-reporting/blob/v${version}/CHANGELOG.md";
    license = licenses.asl20;
    maintainers = [ ];
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.sarahec ];
  };
}