From 1f04451b5160ec95052bcf676aeeef4ba97ee929 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sat, 2 May 2026 02:23:03 +0200 Subject: [PATCH] python3Packages.aioblescan: migrate to pyproject --- pkgs/development/python-modules/aioblescan/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aioblescan/default.nix b/pkgs/development/python-modules/aioblescan/default.nix index 1de147641d4b..78abc237d2ae 100644 --- a/pkgs/development/python-modules/aioblescan/default.nix +++ b/pkgs/development/python-modules/aioblescan/default.nix @@ -3,12 +3,15 @@ buildPythonPackage, fetchFromGitHub, pytestCheckHook, + setuptools, }: buildPythonPackage rec { pname = "aioblescan"; version = "0.2.14"; - format = "setuptools"; + pyproject = true; + + build-system = [ setuptools ]; src = fetchFromGitHub { owner = "frawau";