diff --git a/pkgs/development/python-modules/numpy/2.nix b/pkgs/development/python-modules/numpy/2.nix index e097ad7bb298..4af4511fdc81 100644 --- a/pkgs/development/python-modules/numpy/2.nix +++ b/pkgs/development/python-modules/numpy/2.nix @@ -22,7 +22,11 @@ openmpCheckPhaseHook, # Reverse dependency + astropy, + numba, + pandas, sage, + xarray, # tests hypothesis, @@ -202,7 +206,17 @@ buildPythonPackage (finalAttrs: { coreIncludeInnerDir = "${python.sitePackages}/numpy/_core/include"; coreIncludeDir = "${finalAttrs.finalPackage}/${finalAttrs.finalPackage.passthru.coreIncludeInnerDir}"; tests = { - inherit sage; + # NOTE: It is important to check these central dependent packages when + # issuing Numpy PRs and especially version bumps (even minor version + # bumps) - evidently these have caused issues in staging-next in the + # past. + inherit + astropy + numba + pandas + sage + xarray + ; }; };