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
780 B
Nix
Raw Normal View History

2022-02-24 07:02:39 +00:00
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "i3a";
version = "2.0.1";
src = python3Packages.fetchPypi {
inherit pname version;
hash = "sha256-2k1HYtgJ76qXLvX6RmOSKtMMg+K722n8U9YmBANvQvE=";
};
2022-06-05 23:48:50 +00:00
postPatch = ''
substituteInPlace setup.py \
--replace "python_requires='>=3.7,<3.10'," "python_requires='>=3.7',"
'';
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; {
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;
maintainers = with maintainers; [ fortuneteller2k ];
};
}