lol

Merge pull request #204504 from r-ryantm/auto-update/python3.10-mapbox-earcut

python310Packages.mapbox-earcut: 1.0.0 -> 1.0.1

authored by

Fabian Affolter and committed by
GitHub
21aba1cd 79a3c26b

+21 -7
+21 -7
pkgs/development/python-modules/mapbox-earcut/default.nix
··· 6 6 , pybind11 7 7 , pytestCheckHook 8 8 , setuptools 9 + , pythonOlder 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "mapbox-earcut"; 13 - version = "1.0.0"; 14 + version = "1.0.1"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 14 18 15 19 src = fetchFromGitHub { 16 20 owner = "skogler"; 17 21 repo = "mapbox_earcut_python"; 18 - rev = "v${version}"; 19 - sha256 = "m4q2qTL55fkdi3hm75C3/XV9SUQkpJS+B5SEgpPEctk="; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-+Vxvo++bkoCsJFmt/u1eaqhgpz8Uddz06iIi66ju+MQ="; 20 24 }; 21 25 22 - nativeBuildInputs = [ setuptools pybind11 ]; 26 + nativeBuildInputs = [ 27 + setuptools 28 + pybind11 29 + ]; 23 30 24 - propagatedBuildInputs = [ numpy ]; 31 + propagatedBuildInputs = [ 32 + numpy 33 + ]; 25 34 26 - checkInputs = [ pytestCheckHook ]; 35 + checkInputs = [ 36 + pytestCheckHook 37 + ]; 27 38 28 - pythonImportsCheck = [ "mapbox_earcut" ]; 39 + pythonImportsCheck = [ 40 + "mapbox_earcut" 41 + ]; 29 42 30 43 meta = with lib; { 31 44 homepage = "https://github.com/skogler/mapbox_earcut_python"; 45 + changelog = "https://github.com/skogler/mapbox_earcut_python/releases/tag/v${version}"; 32 46 license = licenses.isc; 33 47 description = "Mapbox-earcut fast triangulation of 2D-polygons"; 34 48 longDescription = ''