Files
nixpkgs/pkgs/development/python-modules/islpy/default.nix
2025-09-02 18:04:47 +00:00

75 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
cmake,
nanobind,
ninja,
pcpp,
scikit-build-core,
typing-extensions,
# buildInputs
imath,
isl,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "islpy";
version = "2025.2.5";
pyproject = true;
src = fetchFromGitHub {
owner = "inducer";
repo = "islpy";
tag = "v${version}";
hash = "sha256-E3DRj1WpMr79BVFUeJftp1JZafP2+Zn6yyf9ClfdWqI=";
};
build-system = [
cmake
nanobind
ninja
pcpp
scikit-build-core
typing-extensions
];
buildInputs = [
imath
isl
];
dontUseCmakeConfigure = true;
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'"
];
# Force resolving the package from $out to make generated ext files usable by tests
preCheck = ''
rm -rf islpy
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "islpy" ];
meta = {
description = "Python wrapper around isl, an integer set library";
homepage = "https://github.com/inducer/islpy";
changelog = "https://github.com/inducer/islpy/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tomasajt ];
};
}