biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / mutmut / default.nix
blob3d9c8078060cb3423f9ccf00ed63368a11474574
1 { lib
2 , fetchFromGitHub
3 , python3
4 , testers
5 }:
7 let self = with python3.pkgs; buildPythonApplication rec {
8   pname = "mutmut";
9   version = "2.2.0";
11   src = fetchFromGitHub {
12     repo = pname;
13     owner = "boxed";
14     rev = version;
15     hash = "sha256-G+OL/9km2iUeZ1QCpU73CIWVWMexcs3r9RdCnAsESnY=";
16   };
18   postPatch = ''
19     substituteInPlace requirements.txt --replace 'junit-xml==1.8' 'junit-xml==1.9'
20   '';
22   disabled = pythonOlder "3.7";
24   doCheck = false;
26   propagatedBuildInputs = [ click glob2 parso pony junit-xml ];
28   passthru.tests.version = testers.testVersion { package = self; };
30   meta = with lib; {
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 ];
37   };
39 in self