2023-05-25 16:07:31 +02:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2022-02-24 08:02:39 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "i3a";
|
2024-01-08 01:46:46 +01:00
|
|
|
version = "2.1.1";
|
2022-02-24 08:02:39 +01:00
|
|
|
|
2023-05-25 16:07:31 +02:00
|
|
|
src = fetchPypi {
|
2022-02-24 08:02:39 +01:00
|
|
|
inherit pname version;
|
2024-01-08 01:46:46 +01:00
|
|
|
hash = "sha256-b1bB7Gto4aL1rbQXIelBVhutjIvZY+K+Y66BGN7OcCs=";
|
2022-02-24 08:02:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ python3Packages.setuptools-scm ];
|
2022-06-06 01:48:50 +02:00
|
|
|
|
2022-02-24 08:02:39 +01:00
|
|
|
propagatedBuildInputs = [ python3Packages.i3ipc ];
|
|
|
|
|
2022-06-06 01:48:50 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2022-02-24 08:02:39 +01:00
|
|
|
meta = with lib; {
|
2024-01-08 01:46:46 +01:00
|
|
|
changelog = "https://git.goral.net.pl/i3a.git/log/";
|
2022-02-24 08:02:39 +01:00
|
|
|
description = "A set of scripts used for automation of i3 and sway window manager layouts";
|
2024-01-08 01:46:46 +01:00
|
|
|
homepage = "https://git.goral.net.pl/i3a.git/about";
|
2022-02-24 08:02:39 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2023-11-17 11:03:27 +01:00
|
|
|
maintainers = with maintainers; [ moni ];
|
2022-02-24 08:02:39 +01:00
|
|
|
};
|
|
|
|
}
|