Unverified Commit e167c3ef authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #286204 from r-ryantm/auto-update/python311Packages.google-cloud-os-config

python311Packages.google-cloud-os-config: 1.16.0 -> 1.17.0
parents 1cbe3ca0 2e8d0a83
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -7,20 +7,25 @@
, pytestCheckHook
, pytest-asyncio
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "google-cloud-os-config";
  version = "1.16.0";
  format = "setuptools";
  version = "1.17.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-1wXyDI1/NMqMwgqYZb3/pLExyi1Wo7st8R/mNwMte44=";
    hash = "sha256-SrLT/0pYAjGpp+6Pi4d/ICCJoUsbXYe0Wht63s4UwOE=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    google-api-core
    proto-plus
@@ -45,8 +50,8 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Google Cloud OS Config API client library";
    homepage = "https://github.com/googleapis/python-os-config";
    changelog = "https://github.com/googleapis/python-os-config/blob/v${version}/CHANGELOG.md";
    homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-os-config";
    changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-os-config-v${version}/packages/google-cloud-os-config/CHANGELOG.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };