From f3964c18d6dc142d8cfda6bb1ade6f1e3fb0a09f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 15 May 2026 16:46:05 +0200 Subject: [PATCH] python3Packages.uvloop: pin to setuptools_80 --- pkgs/development/python-modules/uvloop/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/uvloop/default.nix b/pkgs/development/python-modules/uvloop/default.nix index 629c2cba2e0d..994eef15ed08 100644 --- a/pkgs/development/python-modules/uvloop/default.nix +++ b/pkgs/development/python-modules/uvloop/default.nix @@ -3,11 +3,10 @@ stdenv, buildPythonPackage, fetchFromGitHub, - fetchpatch, # build-system cython, - setuptools, + setuptools_80, # native dependencies libuv, @@ -39,7 +38,7 @@ buildPythonPackage rec { build-system = [ cython - setuptools + setuptools_80 ]; env.LIBUV_CONFIGURE_HOST = stdenv.hostPlatform.config;