Merge pull request #308345 from JohnRTitor/pyprland

pyprland: 2.2.12 -> 2.2.15
This commit is contained in:
Weijia Wang 2024-05-02 12:54:07 +02:00 committed by GitHub
commit d32b6f14dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
};
}