nixpkgs/pkgs/misc/flashfocus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.1 KiB
Nix
Raw Normal View History

2023-09-24 21:27:26 +00:00
{ lib, python3Packages, fetchPypi, netcat-openbsd, nix-update-script }:
2020-08-18 15:03:50 +00:00
2023-09-24 21:27:26 +00:00
python3Packages.buildPythonApplication rec {
2020-08-18 15:03:50 +00:00
pname = "flashfocus";
2023-09-28 09:33:50 +00:00
version = "2.4.1";
2023-09-24 21:25:16 +00:00
format = "pyproject";
2020-08-18 15:03:50 +00:00
src = fetchPypi {
2020-08-18 15:03:50 +00:00
inherit pname version;
2023-09-28 09:33:50 +00:00
sha256 = "sha256-O6jRQ6e96b8CuumTD6TGELaz26No7WFZgGSnNSlqzuE=";
2020-08-18 15:03:50 +00:00
};
2022-01-11 21:09:45 +00:00
postPatch = ''
substituteInPlace bin/nc_flash_window \
--replace "nc" "${lib.getExe netcat-openbsd}"
2022-01-11 21:09:45 +00:00
'';
2023-09-24 21:27:26 +00:00
nativeBuildInputs = with python3Packages; [
2023-01-22 01:57:51 +00:00
pythonRelaxDepsHook
2023-09-24 21:25:16 +00:00
setuptools
2023-01-22 01:57:51 +00:00
];
pythonRelaxDeps = [
"pyyaml"
"xcffib"
];
2023-09-24 21:27:26 +00:00
propagatedBuildInputs = with python3Packages; [
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" ];
passthru.updateScript = nix-update-script { };
2020-08-18 15:03:50 +00:00
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 ];
};
}