From 9c8749a77c3f1e42cd5c3c85876439331e94adac Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 27 May 2025 16:03:45 +0200 Subject: [PATCH] python312Packages.azure-mgmt-appcontainers: 3.1.0 -> 3.2.0 --- .../azure-mgmt-appcontainers/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix index 0be4aa8e3c01..9020c2924ed0 100644 --- a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix @@ -6,22 +6,26 @@ azure-common, azure-mgmt-core, isodate, + setuptools, typing-extensions, }: buildPythonPackage rec { pname = "azure-mgmt-appcontainers"; - version = "3.1.0"; - format = "setuptools"; + version = "3.2.0"; + pyroject = true; disabled = pythonOlder "3.7"; src = fetchPypi { - inherit pname version; - hash = "sha256-PHlDnxK8788UCvjG572LUWJOlx/ZH1rOmKzAc8Lm+uw="; + pname = "azure_mgmt_appcontainers"; + inherit version; + hash = "sha256-bp7WPCwssPZD+tZ52BMIxKomFWztQfwDPl9MBJghjz4="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ azure-common azure-mgmt-core isodate