3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
42 lines
972 B
Nix
42 lines
972 B
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, pyperclip
|
|
, fetchFromGitHub
|
|
, xlib
|
|
, pillow
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "MouseInfo";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asweigart";
|
|
repo = "mouseinfo";
|
|
rev = "1876ad5cd311b4352d46bc64a12edfb4da49974e";
|
|
sha256 = "sha256-UTaHTJE0xFihN9r+DY/WhekZ7S/CXtMFbqAayzexRxk=";
|
|
};
|
|
|
|
patches = [
|
|
./fix-xlib-version.patch
|
|
./pillow-version.patch
|
|
];
|
|
|
|
doCheck = false;
|
|
# Mouseinfo requires a X server running to import succesfully
|
|
# pythonImportsCheck = [ "mouseinfo" ];
|
|
|
|
propagatedBuildInputs = [
|
|
pyperclip
|
|
xlib
|
|
pillow
|
|
];
|
|
|
|
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.";
|
|
homepage = "https://github.com/asweigart/mouseinfo";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ lucasew ];
|
|
};
|
|
}
|