Unverified Commit d32b6f14 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #308345 from JohnRTitor/pyprland

pyprland: 2.2.12 -> 2.2.15
parents 5871de35 5d91718a
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

python3Packages.buildPythonApplication rec {
  pname = "pyprland";
  version = "2.2.12";
  version = "2.2.15";
  format = "pyproject";

  disabled = python3Packages.pythonOlder "3.10";
@@ -10,8 +10,8 @@ python3Packages.buildPythonApplication rec {
  src = fetchFromGitHub {
    owner = "hyprland-community";
    repo = "pyprland";
    rev = "refs/tags/${version}";
    hash = "sha256-SVly20/+67d0Rr2SuM1n/JfT1SlyKdKRBLDx2okCZRY=";
    rev = version;
    hash = "sha256-ju/Xa3s0engE09q9EtKK/zhgimMmlTPXJrpwWQqUFLs=";
  };

  nativeBuildInputs = with python3Packages; [ poetry-core ];
@@ -53,12 +53,12 @@ python3Packages.buildPythonApplication rec {
    "pyprland.plugins.workspaces_follow_focus"
  ];

  meta = with lib; {
  meta = {
    mainProgram = "pypr";
    description = "An hyperland plugin system";
    homepage = "https://github.com/hyprland-community/pyprland";
    license = licenses.mit;
    maintainers = with maintainers; [ iliayar ];
    platforms = platforms.linux;
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ iliayar johnrtitor ];
    platforms = lib.platforms.linux;
  };
}