Unverified Commit 23043ef3 authored by Guy Chronister's avatar Guy Chronister
Browse files

cxxtest: migrate to by-name

parent 4bafb8ba
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonApplication,
  python3Packages,
  fetchFromGitHub,
  ply,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "cxxtest";
  version = "4.4";
  format = "setuptools";
@@ -19,7 +18,7 @@ buildPythonApplication rec {

  sourceRoot = "${src.name}/python";

  nativeCheckInputs = [ ply ];
  nativeCheckInputs = [ python3Packages.ply ];

  preCheck = ''
    cd ../
@@ -41,8 +40,6 @@ buildPythonApplication rec {
    cp -r ../../cxxtest "$out/include"
  '';

  dontWrapPythonPrograms = true;

  meta = {
    homepage = "https://github.com/CxxTest/cxxtest";
    description = "Unit testing framework for C++";
+0 −2
Original line number Diff line number Diff line
@@ -6366,8 +6366,6 @@ with pkgs;
    ssl_implementation = mbedtls_2;
  };

  cxxtest = python3Packages.callPackage ../development/libraries/cxxtest { };

  # Make bdb5 the default as it is the last release under the custom
  # bsd-like license
  db = db5;