From bf3a8492a756b28266d75f159d2b08207d38074c Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 3 Apr 2025 09:18:37 +0200 Subject: [PATCH] cxxtest: fix python3Packages eval failure Without this, one gets the following error: error: do not use python3Packages when building Python packages, specify each used package as a separate argument which was introduced by #394838. --- pkgs/development/libraries/cxxtest/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/cxxtest/default.nix b/pkgs/development/libraries/cxxtest/default.nix index b15d9dbe96a2..187a9c8470ab 100644 --- a/pkgs/development/libraries/cxxtest/default.nix +++ b/pkgs/development/libraries/cxxtest/default.nix @@ -1,10 +1,11 @@ { lib, - python3Packages, + buildPythonApplication, fetchFromGitHub, + ply, }: -python3Packages.buildPythonApplication rec { +buildPythonApplication rec { pname = "cxxtest"; version = "4.4"; @@ -17,7 +18,7 @@ python3Packages.buildPythonApplication rec { sourceRoot = "${src.name}/python"; - nativeCheckInputs = [ python3Packages.ply ]; + nativeCheckInputs = [ ply ]; preCheck = '' cd ../