From 44464d66aee7a43bfc7e787bd3a06969a3e79145 Mon Sep 17 00:00:00 2001 From: Harinn Date: Wed, 3 Jun 2026 21:18:06 +0700 Subject: [PATCH] python3Packages.asyncio-throttle: migrate to pyproject --- pkgs/development/python-modules/asyncio-throttle/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/asyncio-throttle/default.nix b/pkgs/development/python-modules/asyncio-throttle/default.nix index a5a32699dac3..949856d32042 100644 --- a/pkgs/development/python-modules/asyncio-throttle/default.nix +++ b/pkgs/development/python-modules/asyncio-throttle/default.nix @@ -4,12 +4,13 @@ fetchFromGitHub, pytestCheckHook, pytest-asyncio, + setuptools, }: buildPythonPackage rec { pname = "asyncio-throttle"; version = "1.0.2"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "hallazzang"; @@ -18,6 +19,8 @@ buildPythonPackage rec { sha256 = "1hsjcymdcm0hf4l68scf9n8j7ba89azgh96xhxrnyvwxfs5acnmv"; }; + build-system = [ setuptools ]; + nativeCheckInputs = [ pytest-asyncio pytestCheckHook