From beaf533eec01a0cc59cf897cc0d0e17e1b9334d0 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sat, 19 Aug 2023 02:34:22 -0700 Subject: [PATCH] python3.pkgs.blosc2: add missing build dependencies --- pkgs/development/python-modules/blosc2/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/blosc2/default.nix b/pkgs/development/python-modules/blosc2/default.nix index 87f23b04dcf0..80cec5ca1ec3 100644 --- a/pkgs/development/python-modules/blosc2/default.nix +++ b/pkgs/development/python-modules/blosc2/default.nix @@ -3,11 +3,13 @@ , fetchFromGitHub # build-system -, setuptools -, scikit-build -, cython , cmake +, cython , ninja +, oldest-supported-numpy +, scikit-build +, setuptools +, wheel # propagates , msgpack @@ -44,9 +46,10 @@ buildPythonPackage rec { cmake cython ninja - numpy + oldest-supported-numpy scikit-build setuptools + wheel ]; dontUseCmakeConfigure = true;