12 buildPythonPackage rec {
13 pname = "mapbox-earcut";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "mapbox_earcut_python";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-+Vxvo++bkoCsJFmt/u1eaqhgpz8Uddz06iIi66ju+MQ=";
31 propagatedBuildInputs = [
39 pythonImportsCheck = [
44 homepage = "https://github.com/skogler/mapbox_earcut_python";
45 changelog = "https://github.com/skogler/mapbox_earcut_python/releases/tag/v${version}";
46 license = licenses.isc;
47 description = "Mapbox-earcut fast triangulation of 2D-polygons";
49 Python bindings for the C++ implementation of the Mapbox Earcut
50 library, which provides very fast and quite robust triangulation of 2D
53 maintainers = with maintainers; [ friedelino ];