about summary refs log tree commit diff
path: root/pkgs/servers/klipper
diff options
context:
space:
mode:
authorRichard Marko <srk@48.io>2022-10-18 11:22:05 +0200
committerRichard Marko <srk@48.io>2022-10-18 11:22:05 +0200
commit77c96388986106b4b40d1d158aa60bd08a332aa4 (patch)
tree81b3a99becdb280ef767c242f69e1511c10d25c2 /pkgs/servers/klipper
parentdbf1d73cd1a17276196afeee169b4cf7834b7a96 (diff)
klipper: add numpy to buildInputs
This is required for resonance measurement using `TEST_RESONANCES`.

See also https://www.klipper3d.org/Measuring_Resonances.html
Diffstat (limited to 'pkgs/servers/klipper')
-rw-r--r--pkgs/servers/klipper/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/klipper/default.nix b/pkgs/servers/klipper/default.nix
index dc41a9546c94f..f543bf03d92fc 100644
--- a/pkgs/servers/klipper/default.nix
+++ b/pkgs/servers/klipper/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   # NB: This is needed for the postBuild step
   nativeBuildInputs = [ (python3.withPackages ( p: with p; [ cffi ] )) ];
 
-  buildInputs = [ (python3.withPackages (p: with p; [ cffi pyserial greenlet jinja2 markupsafe ])) ];
+  buildInputs = [ (python3.withPackages (p: with p; [ cffi pyserial greenlet jinja2 markupsafe numpy ])) ];
 
   # we need to run this to prebuild the chelper.
   postBuild = ''