diff options
Diffstat (limited to 'pkgs/development/python-modules/mouseinfo/default.nix')
-rw-r--r-- | pkgs/development/python-modules/mouseinfo/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/mouseinfo/default.nix b/pkgs/development/python-modules/mouseinfo/default.nix index 9d4fe2af480f..9691fc36680b 100644 --- a/pkgs/development/python-modules/mouseinfo/default.nix +++ b/pkgs/development/python-modules/mouseinfo/default.nix @@ -1,12 +1,12 @@ -{ stdenv -, lib -, buildPythonPackage -, pyperclip -, fetchFromGitHub -, xlib -, pillow +{ + lib, + buildPythonPackage, + pyperclip, + fetchFromGitHub, + xlib, + pillow, }: -buildPythonPackage rec { +buildPythonPackage { pname = "mouseinfo"; version = "0.1.3"; @@ -33,8 +33,7 @@ buildPythonPackage rec { ]; meta = with lib; { - broken = stdenv.isDarwin; - description = "An application to display XY position and RGB color information for the pixel currently under the mouse. Works on Python 2 and 3."; + 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; maintainers = with maintainers; [ lucasew ]; |