From ec97d636170fd64894fde297b834dcea780b4669 Mon Sep 17 00:00:00 2001 From: Stewart Mackenzie Date: Mon, 13 Aug 2018 17:42:25 +0800 Subject: [PATCH] nix: separated buildtime & runtime dependencies --- nix/artiq.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/nix/artiq.nix b/nix/artiq.nix index 5be35279e..e9a287250 100644 --- a/nix/artiq.nix +++ b/nix/artiq.nix @@ -120,11 +120,8 @@ python35Packages.buildPythonPackage rec { version = "336482"; name = "artiq-${version}"; src = ./..; - propagatedBuildInputs = with python35Packages; [ - llvm-or1k llvmlite sphinx-argparse levenshtein - pyqtgraph aiohttp pygit2 pythonparser numpy - dateutil sphinx quamash scipy outputcheck - prettytable lit ml-pyserial asyncserial h5py cython regex qt5Full pyqt5 ]; + buildInputs = with python35Packages; [ lit outputcheck sphinx sphinx-argparse ]; + propagatedBuildInputs = with python35Packages; [ llvm-or1k llvmlite levenshtein pyqtgraph aiohttp pygit2 pythonparser numpy dateutil quamash scipy prettytable ml-pyserial asyncserial h5py cython regex qt5Full pyqt5 ]; doCheck = false; meta = with stdenv.lib; { description = "";