2020-04-24 23:36:52 +00:00
|
|
|
f: {
|
|
|
|
system ? builtins.currentSystem,
|
2022-11-27 09:42:12 +00:00
|
|
|
pkgs ? import ../.. { inherit system; config = {}; overlays = []; },
|
2020-04-24 23:36:52 +00:00
|
|
|
...
|
|
|
|
} @ args:
|
|
|
|
|
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
makeTest (if pkgs.lib.isFunction f then f (args // { inherit pkgs; inherit (pkgs) lib; }) else f)
|