From 2e71cb5e5f0741bb2d66d1cdc36b40b561036e8a Mon Sep 17 00:00:00 2001 From: Harinn Date: Thu, 4 Jun 2026 19:40:27 +0700 Subject: [PATCH] python3Packages.applicationinsights: migrate to pyproject --- .../python-modules/applicationinsights/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/applicationinsights/default.nix b/pkgs/development/python-modules/applicationinsights/default.nix index 449256f4fe1e..7c437f2f9de9 100644 --- a/pkgs/development/python-modules/applicationinsights/default.nix +++ b/pkgs/development/python-modules/applicationinsights/default.nix @@ -3,11 +3,12 @@ lib, fetchPypi, portalocker, + setuptools, }: buildPythonPackage rec { version = "0.11.10"; - format = "setuptools"; + pyproject = true; pname = "applicationinsights"; src = fetchPypi { @@ -15,7 +16,9 @@ buildPythonPackage rec { sha256 = "0b761f3ef0680acf4731906dfc1807faa6f2a57168ae74592db0084a6099f7b3"; }; - propagatedBuildInputs = [ portalocker ]; + build-system = [ setuptools ]; + + dependencies = [ portalocker ]; meta = { description = "This project extends the Application Insights API surface to support Python";