python311Packages.mouseinfo: unbreak on Darwin

This commit is contained in:
Malo Bourgon 2024-06-05 10:19:32 -07:00
parent 9a5b125f63
commit 27c7d52f1d

View File

@ -1,5 +1,4 @@
{
stdenv,
lib,
buildPythonPackage,
pyperclip,
@ -7,7 +6,7 @@
xlib,
pillow,
}:
buildPythonPackage rec {
buildPythonPackage {
pname = "mouseinfo";
version = "0.1.3";
@ -34,7 +33,6 @@ buildPythonPackage rec {
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3";
homepage = "https://github.com/asweigart/mouseinfo";
license = licenses.gpl3;