nixpkgs/pkgs/misc/flashfocus/default.nix

39 lines
810 B
Nix
Raw Normal View History

{ lib, python3 }:
2020-08-18 15:03:50 +00:00
python3.pkgs.buildPythonApplication rec {
2020-08-18 15:03:50 +00:00
pname = "flashfocus";
version = "2.2.2";
src = python3.pkgs.fetchPypi {
2020-08-18 15:03:50 +00:00
inherit pname version;
sha256 = "1z20d596rnc7cs0rrd221gjn14dmbr11djv94y9p4v7rr788sswv";
};
nativeBuildInputs = with python3.pkgs; [
pytestrunner
];
propagatedBuildInputs = with python3.pkgs; [
i3ipc
xcffib
click
cffi
xpybutil
marshmallow
pyyaml
];
2020-08-18 15:03:50 +00:00
# Tests require access to a X session
doCheck = false;
pythonImportsCheck = [ "flashfocus" ];
meta = with lib; {
homepage = "https://github.com/fennerm/flashfocus";
description = "Simple focus animations for tiling window managers";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ artturin ];
};
}