From 38b5f427d9dda22f1bd147914556ef0128f74bc3 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 21 Feb 2019 19:32:22 +0800 Subject: [PATCH] clean up artiq dependencies --- artiq/pkgs/artiq.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/pkgs/artiq.nix b/artiq/pkgs/artiq.nix index 792734a..998ebb5 100644 --- a/artiq/pkgs/artiq.nix +++ b/artiq/pkgs/artiq.nix @@ -8,9 +8,9 @@ in version = import ./artiq-version.nix; src = import ./artiq-src.nix { inherit fetchgit; }; preBuild = "export VERSIONEER_OVERRIDE=${version}"; - propagatedBuildInputs = [ binutils-or1k llvm-or1k llvmlite-artiq ] + propagatedBuildInputs = [ binutils-or1k llvm-or1k llvmlite-artiq qt5Full ] ++ (with pythonDeps; [ levenshtein pyqtgraph-qt5 quamash pythonparser asyncserial ]) - ++ (with python3Packages; [ aiohttp pygit2 numpy dateutil scipy prettytable pyserial h5py cython regex qt5Full pyqt5 ]); + ++ (with python3Packages; [ aiohttp pygit2 numpy dateutil scipy prettytable pyserial h5py pyqt5 ]); checkPhase = "python -m unittest discover -v artiq.test"; meta = with stdenv.lib; { description = "A leading-edge control system for quantum information experiments";