Unverified Commit b8644451 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

i3a: 2.1.1 -> 2.4.0 (#456502)

parents bd284c14 bc4c6859
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -6,17 +6,18 @@

python3Packages.buildPythonApplication rec {
  pname = "i3a";
  version = "2.1.1";
  version = "2.4.0";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-b1bB7Gto4aL1rbQXIelBVhutjIvZY+K+Y66BGN7OcCs=";
    hash = "sha256-BcGAFFq3UEj4o7nNQ9aStueKmeDNIqSIqkYWhs2Tnqg=";
  };

  build-system = [
    python3Packages.setuptools
    python3Packages.setuptools-scm
    python3Packages.hatchling
  ];

  dependencies = [ python3Packages.i3ipc ];
@@ -25,11 +26,15 @@ python3Packages.buildPythonApplication rec {

  pythonImportsCheck = [ "i3a" ];

  meta = with lib; {
  meta = {
    changelog = "https://git.goral.net.pl/i3a.git/log/";
    description = "Set of scripts used for automation of i3 and sway window manager layouts";
    homepage = "https://git.goral.net.pl/i3a.git/about";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ moni ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [
      moni
      teohz
    ];
    broken = python3Packages.python.version < "3.11";
  };
}