From 2d0865b577ef6192b80c3339e7cfb928ef6317a6 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 13 Feb 2022 18:30:17 +0800 Subject: [PATCH] fix wand deps --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index bb1e0fe..d980bc6 100644 --- a/flake.nix +++ b/flake.nix @@ -212,7 +212,8 @@ wrapQtApp "$out/bin/wand_gui" ''; propagatedBuildInputs = (with artiq.packages.x86_64-linux; [ artiq qasync ]) - ++ (with pkgs.python3Packages; [ numpy scipy influxdb setuptools ]); + ++ [ artiq.inputs.sipyco.packages.x86_64-linux.sipyco ] + ++ (with pkgs.python3Packages; [ numpy scipy influxdb pyqtgraph setuptools ]); }; flake8-artiq = pkgs.python3Packages.buildPythonPackage { pname = "flake8-artiq";