1 import ./make-test-python.nix ({ lib, pkgs, ... }: {
3 meta.maintainers = with pkgs.lib.maintainers; [ chkno ];
7 environment.systemPackages = with pkgs; [ curl libxml2 syncthing ];
13 # Test that indeed a syncthing-init.service systemd service is not created.
15 testScript = /* python */ ''
16 a.succeed("systemctl list-unit-files | awk '$1 == \"syncthing-init.service\" {exit 1;}'")