mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
112a71eef7
When build using 'nix build' if we hit this default we will fail to evaluate. Most instances that this should break have been fixed so we remove this to prevent this from happening further in the future.
10 lines
266 B
Nix
10 lines
266 B
Nix
f: {
|
|
system,
|
|
pkgs ? import ../.. { inherit system; config = {}; overlays = []; },
|
|
...
|
|
} @ args:
|
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
|
|
|
makeTest (if pkgs.lib.isFunction f then f (args // { inherit pkgs; inherit (pkgs) lib; }) else f)
|