From aad206a36b3dd966089d276bd23720fdc1b6e776 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Feb 2025 12:26:50 +0100 Subject: [PATCH] python313Packages.azure-monitor-query: 1.4.0 -> 1.4.1 Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.4.1/sdk/monitor/azure-monitor-query/CHANGELOG.md --- .../python-modules/azure-monitor-query/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/azure-monitor-query/default.nix b/pkgs/development/python-modules/azure-monitor-query/default.nix index f4d0870e8180..0077a3a56a44 100644 --- a/pkgs/development/python-modules/azure-monitor-query/default.nix +++ b/pkgs/development/python-modules/azure-monitor-query/default.nix @@ -1,22 +1,24 @@ { + lib, azure-cli, azure-core, buildPythonPackage, fetchPypi, isodate, - lib, setuptools, typing-extensions, }: buildPythonPackage rec { pname = "azure-monitor-query"; - version = "1.4.0"; + version = "1.4.1"; + pyproject = true; src = fetchPypi { - inherit pname version; - hash = "sha256-aZxvPFlC8J2pjO8nP/u3QDkE7EP5PA1j8Qo2e0R54Ak="; + pname = "azure_monitor_query"; + inherit version; + hash = "sha256-cYJOK1d9Jd8NO+u7sFTAahrj68uRgxqbrAuzRNCt32g="; }; nativeBuildInputs = [ setuptools ];