Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / i3a / default.nix
blob42d8c11915c8a7396418100fa244e386e6d23c22
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "i3a";
5   version = "2.0.1";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-2k1HYtgJ76qXLvX6RmOSKtMMg+K722n8U9YmBANvQvE=";
10   };
12   postPatch = ''
13     substituteInPlace setup.py \
14       --replace "python_requires='>=3.7,<3.10'," "python_requires='>=3.7',"
15   '';
17   nativeBuildInputs = [ python3Packages.setuptools-scm ];
19   propagatedBuildInputs = [ python3Packages.i3ipc ];
21   doCheck = false;
23   meta = with lib; {
24     homepage = "https://git.goral.net.pl/mgoral/i3a";
25     description = "A set of scripts used for automation of i3 and sway window manager layouts";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ moni ];
28   };