python3Packages.islpy: remove unused buildInputs imath

imath refers to the submodule of the vendored isl, not the imath package in
nixpkgs. Disabling USE_SHIPPED_ISL also disables USE_SHIPPED_IMATH.
This commit is contained in:
qbisi
2025-10-10 01:04:59 +08:00
parent 144f74ca95
commit a7afe2d6f0
@@ -12,7 +12,6 @@
typing-extensions,
# buildInputs
imath,
isl,
# tests
@@ -41,7 +40,6 @@ buildPythonPackage rec {
];
buildInputs = [
imath
isl
];
@@ -49,7 +47,6 @@ buildPythonPackage rec {
cmakeFlags = [
"-DUSE_SHIPPED_ISL=OFF"
"-DUSE_SHIPPED_IMATH=OFF"
"-DUSE_BARVINOK=OFF"
"-DISL_INC_DIRS:LIST='${lib.getDev isl}/include'"
"-DISL_LIB_DIRS:LIST='${lib.getLib isl}/lib'"