11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.6";
19 inherit pname version;
20 sha256 = "sha256-3XQ5i682k4q7fCqdmCjMGi5UnGyASFzsiwaymr+q0Y8=";
24 substituteInPlace setup.py \
25 --replace "\"pytest>=2\"," ""
28 buildInputs = [ isl pybind11 ];
29 propagatedBuildInputs = [ six ];
31 preCheck = "mv islpy islpy.hidden";
32 nativeCheckInputs = [ pytestCheckHook ];
33 pythonImportsCheck = [ "islpy" ];
36 description = "Python wrapper around isl, an integer set library";
37 homepage = "https://github.com/inducer/islpy";
38 license = licenses.mit;