From 40311dc33d9b7343eb8a510ded55f9f40b76f8d5 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 16 Jun 2020 17:33:08 +0800 Subject: [PATCH] conda: add numpy dependency to sipyco --- artiq-fast/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq-fast/default.nix b/artiq-fast/default.nix index 5329b71..bd5e15d 100644 --- a/artiq-fast/default.nix +++ b/artiq-fast/default.nix @@ -69,6 +69,7 @@ let name = "sipyco"; inherit (pythonDeps.sipyco) version src; }; + dependencies = ["numpy"]; }; conda-quamash = import ./conda/build.nix { inherit pkgs; } { name = "conda-quamash";