azure-cli-extensions.application-insights: relax isodate dependency

The application-insights extension requires isodate~=0.6.0 but nixpkgs
now has isodate 0.7.2 since commit ed08189.

All upstream versions (0.1.x through 2.0.0b1) have this constraint,
so relaxing the dependency check is the correct fix.

Similar fix was applied for pysolcast in commit fd08a22.

Fixes #497475

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
helgereneurholm 2026-03-07 08:44:30 +01:00
parent 4b2ae98e90
commit 5dd7b708dc

View file

@ -73,6 +73,7 @@
url = "https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-${version}-py2.py3-none-any.whl";
hash = "sha256-4akS+zbaKxFrs0x0uKP/xX28WyK5KLduOkgZaBYeANM=";
description = "Support for managing Application Insights components and querying metrics, events, and logs from such components";
pythonRelaxDeps = [ "isodate" ];
propagatedBuildInputs = with python3Packages; [ isodate ];
meta.maintainers = with lib.maintainers; [ andreasvoss ];
};