python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / pict-rs.nix
blob4315e9fb6e90d9324788f379e012e430856260cf
1 import ./make-test-python.nix ({ pkgs, lib, ... }:
2   {
3     name = "pict-rs";
4     meta.maintainers = with lib.maintainers; [ happysalada ];
6     nodes.machine = { ... }: {
7       environment.systemPackages = with pkgs; [ curl jq ];
8       services.pict-rs.enable = true;
9     };
11     testScript = ''
12       start_all()
14       machine.wait_for_unit("pict-rs")
15       machine.wait_for_open_port(8080)
16     '';
17   })