photoqt: 4.6 -> 4.7 (#361171)
[NixPkgs.git] / pkgs / misc / autotiling / default.nix
blob41131cbb916bd8bd32f52f08949cd04b3e5087eb
1 { lib, buildPythonApplication, fetchFromGitHub, i3ipc, importlib-metadata }:
3 buildPythonApplication rec {
4   pname = "autotiling";
5   version = "1.9.3";
7   src = fetchFromGitHub {
8     owner = "nwg-piotr";
9     repo = pname;
10     rev = "refs/tags/v${version}";
11     hash = "sha256-k+UiAGMB/fJiE+C737yGdyTpER1ciZrMkZezkcn/4yk=";
12   };
14   propagatedBuildInputs = [ i3ipc importlib-metadata ];
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/nwg-piotr/autotiling";
19     description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation";
20     license = licenses.gpl3Plus;
21     platforms = platforms.linux;
22     maintainers = with maintainers; [ artturin ];
23     mainProgram = "autotiling";
24   };