biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / i3 / altlayout.nix
blobf6f1ecf20c1ae3eec5faea3554300747592f5ad2
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "i3altlayout";
5   version = "0.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1h0phf3s6ljffxw0bs73k041wildaz01h37iv5mxhami41wrh4qf";
10   };
12   pythonPath = with python3Packages; [ enum-compat i3ipc docopt ];
14   doCheck = false;
16   pythonImportsCheck = [ "i3altlayout" ];
18   meta = with lib; {
19     maintainers = with maintainers; [ magnetophon ];
20     description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side";
21     mainProgram = "i3altlayout";
22     homepage = "https://github.com/deadc0de6/i3altlayout";
23     license = licenses.gpl3Only;
24     platforms = platforms.linux;
25   };