1 import ./make-test-python.nix ({ pkgs, ... }: {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ peterhoeg ];
7 nodes.machine = { ... }: {
8 environment.systemPackages = with pkgs; [ dbus ];
9 services.packagekit = {
17 # send a dbus message to activate the service
19 "dbus-send --system --type=method_call --print-reply --dest=org.freedesktop.PackageKit /org/freedesktop/PackageKit org.freedesktop.DBus.Introspectable.Introspect"
22 # so now it should be running
23 machine.wait_for_unit("packagekit.service")