mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-27 11:36:29 +03:00

For darwin we set a minimal deployment target at 11.3 currently, which meson-python correctly detects, only to the compare it to the running platform version, which is currently 15.5. We concluded in the upstream issue, that the tests likely should not respect this environment variable, so we now unset it on darwin.
107 lines
2.4 KiB
Nix
107 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
|
|
# build-system, dependencies
|
|
meson,
|
|
ninja,
|
|
pyproject-metadata,
|
|
tomli,
|
|
|
|
# tests
|
|
cython,
|
|
pytestCheckHook,
|
|
pytest-mock,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "meson-python";
|
|
version = "0.18.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "meson_python";
|
|
hash = "sha256-xWqZ7J32aaQGYv5GlgMhr25LFBBsFNsihwnBYo4jhI0=";
|
|
};
|
|
|
|
build-system = [
|
|
meson
|
|
ninja
|
|
pyproject-metadata
|
|
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
dependencies = [
|
|
meson
|
|
ninja
|
|
pyproject-metadata
|
|
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
nativeCheckInputs = [
|
|
cython
|
|
pytestCheckHook
|
|
pytest-mock
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require a Git checkout
|
|
"test_configure_data"
|
|
"test_contents"
|
|
"test_contents"
|
|
"test_contents_license_file"
|
|
"test_contents_subdirs"
|
|
"test_contents_unstaged"
|
|
"test_detect_wheel_tag_module"
|
|
"test_detect_wheel_tag_script"
|
|
"test_dynamic_version"
|
|
"test_editable_install"
|
|
"test_editable_verbose"
|
|
"test_editble_reentrant"
|
|
"test_entrypoints"
|
|
"test_executable_bit"
|
|
"test_executable_bit"
|
|
"test_generated_files"
|
|
"test_install_subdir"
|
|
"test_license_pep639"
|
|
"test_limited_api"
|
|
"test_link_library_in_subproject"
|
|
"test_local_lib"
|
|
"test_long_path"
|
|
"test_meson_build_metadata"
|
|
"test_pep621_metadata"
|
|
"test_pure"
|
|
"test_purelib_and_platlib"
|
|
"test_reproducible"
|
|
"test_rpath"
|
|
"test_scipy_like"
|
|
"test_sharedlib_in_package"
|
|
"test_symlinks"
|
|
"test_uneeded_rpath"
|
|
"test_user_args"
|
|
"test_vendored_meson"
|
|
];
|
|
# meson-python respectes MACOSX_DEPLOYMENT_TARGET, but compares it with the
|
|
# actual platform version during tests, which mismatches.
|
|
# https://github.com/mesonbuild/meson-python/issues/760
|
|
preCheck =
|
|
if stdenv.hostPlatform.isDarwin then
|
|
''
|
|
unset MACOSX_DEPLOYMENT_TARGET
|
|
''
|
|
else
|
|
null;
|
|
|
|
setupHooks = [ ./add-build-flags.sh ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/mesonbuild/meson-python/blob/${version}/CHANGELOG.rst";
|
|
description = "Meson Python build backend (PEP 517)";
|
|
homepage = "https://github.com/mesonbuild/meson-python";
|
|
license = [ lib.licenses.mit ];
|
|
maintainers = with lib.maintainers; [ doronbehar ];
|
|
teams = [ lib.teams.python ];
|
|
};
|
|
}
|