From a7afe2d6f05cb6aaa2cdc2efcd9b04b7fab94534 Mon Sep 17 00:00:00 2001 From: qbisi Date: Thu, 25 Sep 2025 10:44:26 +0800 Subject: [PATCH] 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. --- pkgs/development/python-modules/islpy/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/python-modules/islpy/default.nix b/pkgs/development/python-modules/islpy/default.nix index 16b896e4fd19..afa1cf15e467 100644 --- a/pkgs/development/python-modules/islpy/default.nix +++ b/pkgs/development/python-modules/islpy/default.nix @@ -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'"