From 7c31a275321d81f33e289da29aa4367be416d18c Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sat, 26 Aug 2023 02:16:53 -0700 Subject: [PATCH] python310Packages.oldest-supported-numpy: fix numpy dependency --- .../python-modules/oldest-supported-numpy/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/oldest-supported-numpy/default.nix b/pkgs/development/python-modules/oldest-supported-numpy/default.nix index a7b99614aef8..5d6e11c34daf 100644 --- a/pkgs/development/python-modules/oldest-supported-numpy/default.nix +++ b/pkgs/development/python-modules/oldest-supported-numpy/default.nix @@ -25,10 +25,11 @@ buildPythonPackage rec { --replace 'numpy==' 'numpy>=' ''; - nativeBuildInputs = [ + propagatedBuildInputs = [ numpy ]; + # package has no tests doCheck = false; meta = with lib; {