fix previous commit

pull/16/head
Sebastien Bourdeauducq 2019-02-17 22:43:20 +08:00
parent fc93b19ba7
commit d85f57ca0a
1 changed files with 3 additions and 1 deletions

View File

@ -27,5 +27,7 @@ in
src = generatedNix;
constituents = builtins.attrValues jobs;
};
extended-tests = pkgs.runCommand "extended-tests" { propagatedBuildInputs = [artiq artiq-board-kc705-nist_clock]; } "cp ${./extended-tests.py} $out;";
extended-tests = pkgs.runCommand "extended-tests" {
propagatedBuildInputs = [pkgs.python3.withPackages(ps: [artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock])];
} "cp ${./extended-tests.py} $out;";
}