about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/i3a/default.nix
blob: 5c549bc7f16aef69a3e08f81b91764846b27720c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, python3Packages, fetchPypi }:

python3Packages.buildPythonApplication rec {
  pname = "i3a";
  version = "2.1.1";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-b1bB7Gto4aL1rbQXIelBVhutjIvZY+K+Y66BGN7OcCs=";
  };

  nativeBuildInputs = [ python3Packages.setuptools-scm ];

  propagatedBuildInputs = [ python3Packages.i3ipc ];

  doCheck = false;

  meta = with lib; {
    changelog = "https://git.goral.net.pl/i3a.git/log/";
    description = "A set of scripts used for automation of i3 and sway window manager layouts";
    homepage = "https://git.goral.net.pl/i3a.git/about";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ moni ];
  };
}