nixpkgs/pkgs/misc/i3a/default.nix

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

30 lines
764 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2022-02-24 08:02:39 +01:00
python3Packages.buildPythonApplication rec {
pname = "i3a";
version = "2.0.1";
src = fetchPypi {
2022-02-24 08:02:39 +01:00
inherit pname version;
hash = "sha256-2k1HYtgJ76qXLvX6RmOSKtMMg+K722n8U9YmBANvQvE=";
};
2022-06-06 01:48:50 +02:00
postPatch = ''
substituteInPlace setup.py \
--replace "python_requires='>=3.7,<3.10'," "python_requires='>=3.7',"
'';
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; {
homepage = "https://git.goral.net.pl/mgoral/i3a";
description = "A set of scripts used for automation of i3 and sway window manager layouts";
license = licenses.gpl3Plus;
2023-11-17 11:03:27 +01:00
maintainers = with maintainers; [ moni ];
2022-02-24 08:02:39 +01:00
};
}