From 0f7e6d742083684b4bd22b856c7b0788c839e3ed Mon Sep 17 00:00:00 2001 From: Wim de With Date: Sat, 1 Aug 2026 16:54:18 +0200 Subject: [PATCH] python3Packages.azure-mgmt-automation: 1.0.1 -> 2.0.0 --- .../azure-mgmt-automation/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-automation/default.nix b/pkgs/development/python-modules/azure-mgmt-automation/default.nix index e69405790457..6f06e570fcb4 100644 --- a/pkgs/development/python-modules/azure-mgmt-automation/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-automation/default.nix @@ -4,27 +4,30 @@ fetchPypi, setuptools, msrest, - azure-common, + azure-core, azure-mgmt-core, + isodate, + typing-extensions, }: buildPythonPackage (finalAttrs: { pname = "azure-mgmt-automation"; - version = "1.0.1"; + version = "2.0.0"; pyproject = true; src = fetchPypi { pname = "azure_mgmt_automation"; inherit (finalAttrs) version; - hash = "sha256-A/NYbg/gllws7cp5plM4CHKuYnwm6lNlpVuqTq1aeO8="; + hash = "sha256-nRVIwul58bj8PtUXc/yEo0BkVSAzU+f3v19A5YEQmRY="; }; build-system = [ setuptools ]; dependencies = [ - msrest - azure-common + azure-core azure-mgmt-core + isodate + typing-extensions ]; # has no tests