Unverified Commit a707a2b2 authored by Victor Engmark's avatar Victor Engmark
Browse files

mutmut: Format with nixfmt-rfc-style

parent a67e90c4
Loading
Loading
Loading
Loading
+48 −37
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, python3
, testers
{
  lib,
  fetchFromGitHub,
  python3,
  testers,
}:

let self = with python3.pkgs; buildPythonApplication rec {
let
  self =
    with python3.pkgs;
    buildPythonApplication rec {
      pname = "mutmut";
      version = "2.2.0";

@@ -23,7 +27,13 @@ let self = with python3.pkgs; buildPythonApplication rec {

      doCheck = false;

  propagatedBuildInputs = [ click glob2 parso pony junit-xml ];
      propagatedBuildInputs = [
        click
        glob2
        parso
        pony
        junit-xml
      ];

      passthru.tests.version = testers.testVersion { package = self; };

@@ -36,4 +46,5 @@ let self = with python3.pkgs; buildPythonApplication rec {
        maintainers = with maintainers; [ synthetica ];
      };
    };
in self
in
self