python3Packages.nuitka: mark as broken on darwin

Changed files
+3
pkgs
development
python-modules
nuitka
+3
pkgs/development/python-modules/nuitka/default.nix
···
{
lib,
+
stdenv,
buildPythonPackage,
fetchFromGitHub,
isPyPy,
···
description = "Python compiler with full language support and CPython compatibility";
license = licenses.asl20;
homepage = "https://nuitka.net/";
+
# never built on darwin since first introduction in nixpkgs
+
broken = stdenv.hostPlatform.isDarwin;
};
}