From 8848bbe63b3ff343b89921209816999d2901de71 Mon Sep 17 00:00:00 2001 From: Wim de With Date: Fri, 22 May 2026 19:33:02 +0200 Subject: [PATCH 1/2] python3Packages.azure-mgmt-automation: 1.0.0 -> 1.0.1 --- .../python-modules/azure-mgmt-automation/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-automation/default.nix b/pkgs/development/python-modules/azure-mgmt-automation/default.nix index 889140af5ba7..563c1d9cdb23 100644 --- a/pkgs/development/python-modules/azure-mgmt-automation/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-automation/default.nix @@ -10,13 +10,13 @@ buildPythonPackage rec { pname = "azure-mgmt-automation"; - version = "1.0.0"; + version = "1.0.1"; pyproject = true; src = fetchPypi { - inherit pname version; - extension = "zip"; - hash = "sha256-pJ0tQT/vVwEMs2Fh5bwFZgG418bQW9PLBaE1Eu8pHh4="; + pname = "azure_mgmt_automation"; + inherit version; + hash = "sha256-A/NYbg/gllws7cp5plM4CHKuYnwm6lNlpVuqTq1aeO8="; }; build-system = [ setuptools ]; From de11f8a838366d07dc530b52fc59f2c64d8e0c15 Mon Sep 17 00:00:00 2001 From: Wim de With Date: Fri, 22 May 2026 19:44:17 +0200 Subject: [PATCH 2/2] python3Packages.azure-mgmt-automation: use fixed point --- .../python-modules/azure-mgmt-automation/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-automation/default.nix b/pkgs/development/python-modules/azure-mgmt-automation/default.nix index 563c1d9cdb23..e69405790457 100644 --- a/pkgs/development/python-modules/azure-mgmt-automation/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-automation/default.nix @@ -8,14 +8,14 @@ azure-mgmt-core, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "azure-mgmt-automation"; version = "1.0.1"; pyproject = true; src = fetchPypi { pname = "azure_mgmt_automation"; - inherit version; + inherit (finalAttrs) version; hash = "sha256-A/NYbg/gllws7cp5plM4CHKuYnwm6lNlpVuqTq1aeO8="; }; @@ -35,8 +35,8 @@ buildPythonPackage rec { meta = { description = "This is the Microsoft Azure Automation Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/automation/azure-mgmt-automation"; - changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-automation_${version}/sdk/automation/azure-mgmt-automation/CHANGELOG.md"; + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-automation_${finalAttrs.version}/sdk/automation/azure-mgmt-automation/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ wfdewith ]; }; -} +})