python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / mutmut / default.nix
blob4b40930c646d1604e4b12f44f2e38fb82e36032a
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 let self = with python3.pkgs; buildPythonApplication rec {
7   pname = "mutmut";
8   version = "2.2.0";
10   src = fetchFromGitHub {
11     repo = pname;
12     owner = "boxed";
13     rev = version;
14     hash = "sha256-G+OL/9km2iUeZ1QCpU73CIWVWMexcs3r9RdCnAsESnY=";
15   };
17   postPatch = ''
18     substituteInPlace requirements.txt --replace 'junit-xml==1.8' 'junit-xml==1.9'
19   '';
21   disabled = pythonOlder "3.7";
23   doCheck = false;
25   propagatedBuildInputs = [ click glob2 parso pony junit-xml ];
27   passthru.tests.version = testers.testVersion { package = self; };
29   meta = with lib; {
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 ];
35   };
37 in self