From e94875c7974a819e5f7dcaa2d3b0f025552c5b66 Mon Sep 17 00:00:00 2001 From: ocfox Date: Wed, 2 Oct 2024 18:36:40 +0800 Subject: [PATCH] bencodetools: fix build Co-authored-by: OPNA2608 --- pkgs/development/libraries/bencodetools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/bencodetools/default.nix b/pkgs/development/libraries/bencodetools/default.nix index 0a9694367340..02b0fe080f41 100644 --- a/pkgs/development/libraries/bencodetools/default.nix +++ b/pkgs/development/libraries/bencodetools/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; nativeBuildInputs = [ - python3 + (python3.withPackages (ps: with ps; [ distutils ])) ]; # installCheck instead of check due to -install_name'd library on Darwin