python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / containers-custom-pkgs.nix
blobe8740ac631345118a7fcb5c2ad0d14820b893ad9
1 import ./make-test-python.nix ({ pkgs, lib, ... }: let
3   customPkgs = pkgs.appendOverlays [ (self: super: {
4     hello = super.hello.overrideAttrs (old: {
5        name = "custom-hello";
6     });
7   }) ];
9 in {
10   name = "containers-custom-pkgs";
11   meta = {
12     maintainers = with lib.maintainers; [ adisbladis erikarvstedt ];
13   };
15   nodes.machine = { config, ... }: {
16     assertions = let
17       helloName = (builtins.head config.containers.test.config.system.extraDependencies).name;
18     in [ {
19       assertion = helloName == "custom-hello";
20       message = "Unexpected value: ${helloName}";
21     } ];
23     containers.test = {
24       autoStart = true;
25       config = { pkgs, config, ... }: {
26         nixpkgs.pkgs = customPkgs;
27         system.extraDependencies = [ pkgs.hello ];
28       };
29     };
30   };
32   # This test only consists of evaluating the test machine
33   testScript = "pass";