nixpkgs/pkgs/misc/i3a/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
691 B
Nix
Raw Normal View History

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