Unverified Commit 900d87ec authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

python3Packages.skein: use `meta.problems` instead of `lib.traceIf`

parent 61a431ff
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -77,8 +77,8 @@ buildPythonPackage rec {
      alexbiehl
      illustris
    ];
    # https://github.com/NixOS/nixpkgs/issues/48663#issuecomment-1083031627
    # replace with https://github.com/NixOS/nixpkgs/pull/140325 once it is merged
    broken = lib.traceIf isPy27 "${pname} not supported on ${python.executable}" isPy27;
    problems = lib.optionalAttrs isPy27 {
      broken.message = "${pname} not supported on ${python.executable}";
    };
  };
}