2021-03-21 18:24:14 +01:00
|
|
|
{ lib, python3 }:
|
2020-08-18 17:03:50 +02:00
|
|
|
|
2021-03-21 18:24:14 +01:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2020-08-18 17:03:50 +02:00
|
|
|
pname = "flashfocus";
|
2021-07-15 05:23:32 +02:00
|
|
|
version = "2.2.3";
|
2020-08-18 17:03:50 +02:00
|
|
|
|
2021-03-21 18:24:14 +01:00
|
|
|
src = python3.pkgs.fetchPypi {
|
2020-08-18 17:03:50 +02:00
|
|
|
inherit pname version;
|
2021-07-15 05:23:32 +02:00
|
|
|
sha256 = "0cn44hryvz2wl7xklaslxsb3l2i3f8jkgmml0n9v2ks22j5l4r4h";
|
2020-08-18 17:03:50 +02:00
|
|
|
};
|
|
|
|
|
2021-03-21 18:24:14 +01:00
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
2021-07-20 23:07:53 +02:00
|
|
|
pytest-runner
|
2021-03-21 18:24:14 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
i3ipc
|
|
|
|
xcffib
|
|
|
|
click
|
|
|
|
cffi
|
|
|
|
xpybutil
|
|
|
|
marshmallow
|
|
|
|
pyyaml
|
|
|
|
];
|
2020-08-18 17:03:50 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|