Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / misc / i3a / default.nix
blob853b758793c1b7f360ddc07f217ad5516376f038
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "i3a";
5   version = "2.1.1";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-b1bB7Gto4aL1rbQXIelBVhutjIvZY+K+Y66BGN7OcCs=";
10   };
12   nativeBuildInputs = [ python3Packages.setuptools-scm ];
14   propagatedBuildInputs = [ python3Packages.i3ipc ];
16   doCheck = false;
18   meta = with lib; {
19     changelog = "https://git.goral.net.pl/i3a.git/log/";
20     description = "Set of scripts used for automation of i3 and sway window manager layouts";
21     homepage = "https://git.goral.net.pl/i3a.git/about";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ moni ];
24   };