mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
75 lines
2.0 KiB
Nix
75 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pyprland";
|
|
version = "2.4.0";
|
|
format = "pyproject";
|
|
|
|
disabled = python3Packages.pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprland-community";
|
|
repo = "pyprland";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-jK6ap/beiqAtZXVNqPB3zV8R2Kfc3LhqJBvFlWYIfb4=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [ poetry-core ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ aiofiles ];
|
|
|
|
postInstall = ''
|
|
# file has shebang but cant be run due to a relative import, has proper entrypoint in /bin
|
|
chmod -x $out/${python3Packages.python.sitePackages}/pyprland/command.py
|
|
'';
|
|
|
|
# NOTE: this is required for the imports check below to work properly
|
|
HYPRLAND_INSTANCE_SIGNATURE = "dummy";
|
|
|
|
pythonImportsCheck = [
|
|
"pyprland"
|
|
"pyprland.adapters"
|
|
"pyprland.adapters.menus"
|
|
"pyprland.command"
|
|
"pyprland.common"
|
|
"pyprland.ipc"
|
|
"pyprland.plugins"
|
|
"pyprland.plugins.experimental"
|
|
"pyprland.plugins.expose"
|
|
"pyprland.plugins.fetch_client_menu"
|
|
"pyprland.plugins.interface"
|
|
"pyprland.plugins.layout_center"
|
|
"pyprland.plugins.lost_windows"
|
|
"pyprland.plugins.magnify"
|
|
"pyprland.plugins.monitors"
|
|
"pyprland.plugins.monitors_v0"
|
|
"pyprland.plugins.pyprland"
|
|
"pyprland.plugins.scratchpads"
|
|
"pyprland.plugins.shift_monitors"
|
|
"pyprland.plugins.shortcuts_menu"
|
|
"pyprland.plugins.system_notifier"
|
|
"pyprland.plugins.toggle_dpms"
|
|
"pyprland.plugins.toggle_special"
|
|
"pyprland.plugins.workspaces_follow_focus"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script {};
|
|
|
|
meta = {
|
|
mainProgram = "pypr";
|
|
description = "Hyperland plugin system";
|
|
homepage = "https://github.com/hyprland-community/pyprland";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
iliayar
|
|
johnrtitor
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|