mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib, python3Packages, fetchPypi, netcat-openbsd, nix-update-script }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "flashfocus";
|
|
version = "2.4.1";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-O6jRQ6e96b8CuumTD6TGELaz26No7WFZgGSnNSlqzuE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace bin/nc_flash_window \
|
|
--replace "nc" "${lib.getExe netcat-openbsd}"
|
|
'';
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"pyyaml"
|
|
"xcffib"
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
i3ipc
|
|
xcffib
|
|
click
|
|
cffi
|
|
xpybutil
|
|
marshmallow
|
|
pyyaml
|
|
];
|
|
|
|
# Tests require access to a X session
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "flashfocus" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
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 ];
|
|
};
|
|
}
|