python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / games / joystickwake / default.nix
blobcd18b8b09df55e0b522abc421d246d0d3984936d
1 { lib, python3, fetchFromGitHub }:
2 python3.pkgs.buildPythonApplication rec {
3   pname = "joystickwake";
4   version = "0.3";
6   src = fetchFromGitHub {
7     owner = "foresto";
8     repo = pname;
9     rev = "v${version}";
10     sha256 = "0f990bvykjjq2rzzbm158kajnqxigfzcrzap11dc415wkvn25k6q";
11   };
13   propagatedBuildInputs = with python3.pkgs; [ pyudev xlib ];
15   postInstall = ''
16     # autostart file
17     ln -s $out/${python3.sitePackages}/etc $out/etc
18   '';
20   meta = with lib; {
21     description = "A joystick-aware screen waker";
22     longDescription = ''
23       Linux gamers often find themselves unexpectedly staring at a blank screen, because their display server fails to recognize game controllers as input devices, allowing the screen blanker to activate during gameplay.
24       This program works around the problem by temporarily disabling screen blankers when joystick activity is detected.
25     '';
26     homepage = "https://github.com/foresto/joystickwake";
27     maintainers = with maintainers; [ bertof ];
28     license = licenses.mit;
29     platforms = platforms.linux;
30   };