From d85f57ca0a87c3b0b02341b7651f01cfc963d806 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 17 Feb 2019 22:43:20 +0800 Subject: [PATCH] fix previous commit --- main.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.nix b/main.nix index a799338..1525462 100644 --- a/main.nix +++ b/main.nix @@ -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;"; }