python312Packages.numpy_1: add a coreIncludeDir passthru attribute

This commit is contained in:
Doron Behar 2024-07-22 17:48:24 +03:00
parent d3463a289c
commit d649d30d9e

View File

@ -3,6 +3,7 @@
stdenv, stdenv,
fetchPypi, fetchPypi,
python, python,
numpy_1,
pythonAtLeast, pythonAtLeast,
pythonOlder, pythonOlder,
buildPythonPackage, buildPythonPackage,
@ -185,6 +186,7 @@ buildPythonPackage rec {
blas = blas.provider; blas = blas.provider;
blasImplementation = blas.implementation; blasImplementation = blas.implementation;
inherit cfg; inherit cfg;
coreIncludeDir = "${numpy_1}/${python.sitePackages}/numpy/core/include";
tests = { tests = {
inherit sage; inherit sage;
}; };