python3Packages.pymonctl: mark broken on darwin

This commit is contained in:
Peder Bergebakken Sundt 2025-06-27 09:31:16 +02:00
parent 7ae96bb0ee
commit ade903c5be

View File

@ -1,5 +1,6 @@
{ {
lib, lib,
stdenv,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
setuptools, setuptools,
@ -38,5 +39,6 @@ buildPythonPackage rec {
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
description = "Cross-Platform toolkit to get info on and control monitors connected"; description = "Cross-Platform toolkit to get info on and control monitors connected";
maintainers = with lib.maintainers; [ sigmanificient ]; maintainers = with lib.maintainers; [ sigmanificient ];
broken = stdenv.hostPlatform.isDarwin;
}; };
} }