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