7 python3Packages.buildPythonApplication rec {
11 src = fetchFromGitHub {
15 sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
18 sourceRoot = "${src.name}/python";
20 nativeCheckInputs = [ python3Packages.ply ];
28 python scripts/cxxtestgen --error-printer -o build/GoodSuite.cpp ../../test/GoodSuite.h
29 $CXX -I../../ -o build/GoodSuite build/GoodSuite.cpp
38 mkdir -p "$out/include"
39 cp -r ../../cxxtest "$out/include"
42 dontWrapPythonPrograms = true;
45 homepage = "http://cxxtest.com";
46 description = "Unit testing framework for C++";
47 mainProgram = "cxxtestgen";
48 license = licenses.lgpl3;
49 platforms = platforms.unix;
50 maintainers = with maintainers; [ juliendehos ];