1{ stdenv, fetchFromGitHub, python2Packages}:
2
3let
4 pname = "cxxtest";
5 version = "4.4";
6in python2Packages.buildPythonApplication rec {
7 name = "${pname}-${version}";
8
9 src = fetchFromGitHub {
10 owner = "CxxTest";
11 repo = pname;
12 rev = version;
13 sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
14 };
15
16 sourceRoot = "${name}-src/python";
17
18 meta = with stdenv.lib; {
19 homepage = http://cxxtest.com;
20 description = "Unit testing framework for C++";
21 platforms = platforms.unix ;
22 license = licenses.lgpl3;
23 maintainers = [ maintainers.juliendehos ];
24 };
25}
26