python3Packages.pymonctl: mark broken on darwin

Changed files
+2
pkgs
development
python-modules
pymonctl
+2
pkgs/development/python-modules/pymonctl/default.nix
···
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
···
license = lib.licenses.bsd3;
description = "Cross-Platform toolkit to get info on and control monitors connected";
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
···
{
lib,
+
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
···
license = lib.licenses.bsd3;
description = "Cross-Platform toolkit to get info on and control monitors connected";
maintainers = with lib.maintainers; [ sigmanificient ];
+
broken = stdenv.hostPlatform.isDarwin;
};
}