python312Packages.islpy: fix build, refactor and adopt

This commit is contained in:
TomaSajt 2024-04-28 10:55:56 +02:00
parent 818f65922c
commit 050435e9aa
No known key found for this signature in database
GPG Key ID: F011163C050122A1
2 changed files with 55 additions and 23 deletions

View File

@ -1,41 +1,71 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, isl fetchFromGitHub,
, pybind11 pythonOlder,
, pytestCheckHook
, pythonOlder setuptools,
, six cmake,
nanobind,
ninja,
pcpp,
scikit-build,
isl,
pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "islpy"; pname = "islpy";
version = "2023.2.5"; version = "2023.2.5";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "inducer";
sha256 = "sha256-3XQ5i682k4q7fCqdmCjMGi5UnGyASFzsiwaymr+q0Y8="; repo = "islpy";
rev = "v${version}";
hash = "sha256-0m41G5HlPrgt4rDY3Y9cKBJGHSnLg/R+IywBO1anRpQ=";
}; };
postConfigure = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace pyproject.toml \
--replace "\"pytest>=2\"," "" --replace-fail "setuptools>=42,<64;python_version<'3.12'" "setuptools>=42"
''; '';
buildInputs = [ isl pybind11 ]; build-system = [
propagatedBuildInputs = [ six ]; setuptools
cmake
nanobind
ninja
pcpp
scikit-build
];
buildInputs = [ isl ];
dontUseCmakeConfigure = true;
preConfigure = ''
python ./configure.py \
--no-use-shipped-isl \
--isl-inc-dir=${lib.getDev isl}/include \
'';
# Force resolving the package from $out to make generated ext files usable by tests
preCheck = ''
mv islpy islpy.hidden
'';
preCheck = "mv islpy islpy.hidden";
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "islpy" ]; pythonImportsCheck = [ "islpy" ];
meta = with lib; { meta = {
description = "Python wrapper around isl, an integer set library"; description = "Python wrapper around isl, an integer set library";
homepage = "https://github.com/inducer/islpy"; homepage = "https://github.com/inducer/islpy";
license = licenses.mit; license = lib.licenses.mit;
maintainers = [ ]; maintainers = with lib.maintainers; [ tomasajt ];
}; };
} }

View File

@ -5907,7 +5907,9 @@ self: super: with self; {
isbnlib = callPackage ../development/python-modules/isbnlib { }; isbnlib = callPackage ../development/python-modules/isbnlib { };
islpy = callPackage ../development/python-modules/islpy { }; islpy = callPackage ../development/python-modules/islpy {
isl = pkgs.isl_0_24;
};
iso3166 = callPackage ../development/python-modules/iso3166 { }; iso3166 = callPackage ../development/python-modules/iso3166 { };