ttaenc: init at 3.4.1 (#238757)
[NixPkgs.git] / nixos / tests / make-test-python.nix
blobec8a286607a030214b8461159bcd44e5441de4d6
1 f:
3   system ? builtins.currentSystem,
4   pkgs ? import ../.. {
5     inherit system;
6     config = { };
7     overlays = [ ];
8   },
9   ...
10 }@args:
12 with import ../lib/testing-python.nix { inherit system pkgs; };
14 makeTest (
15   if pkgs.lib.isFunction f then
16     f (
17       args
18       // {
19         inherit pkgs;
20         inherit (pkgs) lib;
21       }
22     )
23   else
24     f