mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00
19 lines
431 B
Nix
19 lines
431 B
Nix
![]() |
import ../make-test-python.nix (
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
name = "replace-dependencies";
|
||
|
meta.maintainers = with pkgs.lib.maintainers; [ alois31 ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ ... }:
|
||
|
{
|
||
|
system.extraDependencies = [ pkgs.stdenvNoCC ];
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
start_all()
|
||
|
machine.succeed("nix-build --option substitute false ${pkgs.path}/nixos/tests/replace-dependencies/guest.nix")
|
||
|
'';
|
||
|
}
|
||
|
)
|