clan-core/pkgs/clan-vm-manager/default.nix

80 lines
1.9 KiB
Nix
Raw Normal View History

2023-11-23 13:37:05 +00:00
{ python3
, runCommand
, setuptools
, copyDesktopItems
, pygobject3
, wrapGAppsHook
, gtk4
2023-11-23 13:37:05 +00:00
, gnome
, pygobject-stubs
2023-11-23 13:37:05 +00:00
, gobject-introspection
, clan-cli
2023-11-23 14:19:58 +00:00
, makeDesktopItem
, libadwaita
2023-11-23 13:37:05 +00:00
}:
let
source = ./.;
desktop-file = makeDesktopItem {
2024-03-01 11:52:05 +00:00
name = "org.clan.vm-manager";
exec = "clan-vm-manager %u";
icon = ./clan_vm_manager/assets/clan_white.png;
desktopName = "cLAN Manager";
startupWMClass = "clan";
mimeTypes = [ "x-scheme-handler/clan" ];
};
2023-11-23 13:37:05 +00:00
in
python3.pkgs.buildPythonApplication {
name = "clan-vm-manager";
src = source;
format = "pyproject";
makeWrapperArgs = [
# This prevents problems with mixed glibc versions that might occur when the
# cli is called through a browser built against another glibc
"--unset LD_LIBRARY_PATH"
];
nativeBuildInputs = [
setuptools
copyDesktopItems
wrapGAppsHook
gobject-introspection
];
buildInputs = [ gtk4 libadwaita gnome.adwaita-icon-theme ];
# We need to propagate the build inputs to nix fmt / treefmt
propagatedBuildInputs = [
(python3.pkgs.toPythonModule clan-cli)
pygobject3
pygobject-stubs
];
2023-11-23 13:37:05 +00:00
# also re-expose dependencies so we test them in CI
passthru = {
inherit desktop-file;
tests = {
clan-vm-manager-no-breakpoints = runCommand "clan-vm-manager-no-breakpoints" { } ''
if grep --include \*.py -Rq "breakpoint()" ${source}; then
echo "breakpoint() found in ${source}:"
grep --include \*.py -Rn "breakpoint()" ${source}
exit 1
fi
touch $out
'';
};
2023-11-23 13:37:05 +00:00
};
# Don't leak python packages into a devshell.
# It can be very confusing if you `nix run` than load the cli from the devshell instead.
postFixup = ''
rm $out/nix-support/propagated-build-inputs
'';
checkPhase = ''
PYTHONPATH= $out/bin/clan-vm-manager --help
'';
2023-11-23 14:19:58 +00:00
desktopItems = [
desktop-file
2023-11-23 14:19:58 +00:00
];
2023-11-23 13:37:05 +00:00
}