python3Packages.mapbox-earcut: 1.0.3 -> 2.0.0

https://github.com/skogler/mapbox_earcut_python/releases/tag/v2.0.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:19:30 +01:00
parent fad0dd611e
commit 3c2243471e
@@ -6,7 +6,7 @@
# build-system
cmake,
ninja,
pybind11,
nanobind,
scikit-build-core,
# dependencies
@@ -18,18 +18,18 @@
buildPythonPackage rec {
pname = "mapbox-earcut";
version = "1.0.3";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "skogler";
repo = "mapbox_earcut_python";
tag = "v${version}";
hash = "sha256-2dUZ78yWSudjozV2zIRNQgUeaNrkL+NXnF51q4T+dRU=";
hash = "sha256-R5YDJbfDNf6jAvG3VJQMYay6i8dw616SUs0tPgrJt6I=";
};
build-system = [
pybind11
nanobind
scikit-build-core
];
@@ -44,6 +44,10 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
rm -rf mapbox_earcut
'';
pythonImportsCheck = [ "mapbox_earcut" ];
meta = {