7 let self = with python3.pkgs; buildPythonApplication rec {
11 src = fetchFromGitHub {
15 hash = "sha256-G+OL/9km2iUeZ1QCpU73CIWVWMexcs3r9RdCnAsESnY=";
19 substituteInPlace requirements.txt --replace 'junit-xml==1.8' 'junit-xml==1.9'
22 disabled = pythonOlder "3.7";
26 propagatedBuildInputs = [ click glob2 parso pony junit-xml ];
28 passthru.tests.version = testers.testVersion { package = self; };
31 description = "mutation testing system for Python, with a strong focus on ease of use";
32 mainProgram = "mutmut";
33 homepage = "https://github.com/boxed/mutmut";
34 changelog = "https://github.com/boxed/mutmut/blob/${version}/HISTORY.rst";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ synthetica ];