python3Packages.alphashape: init at 1.3.1

Toolbox for generating n-dimensional alpha shapes

https://github.com/bellockk/alphashape
This commit is contained in:
Fabian Affolter
2026-07-01 02:28:49 +02:00
parent 612cfb30cb
commit 89bc978b5c
2 changed files with 67 additions and 0 deletions
@@ -0,0 +1,65 @@
{
lib,
buildPythonPackage,
click,
click-log,
fetchFromGitHub,
geopandas,
networkx,
numpy,
pytestCheckHook,
rtree,
scipy,
setuptools,
shapely,
trimesh,
}:
buildPythonPackage (finalAttrs: {
pname = "alphashape";
version = "1.3.1";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "bellockk";
repo = "alphashape";
tag = "v${finalAttrs.version}";
hash = "sha256-T2wyU6fpiYRA1+9n//5EtOLhO1fzccQsie+gQj729Vs=";
};
build-system = [ setuptools ];
dependencies = [
click
click-log
shapely
numpy
trimesh
networkx
rtree
scipy
];
nativeCheckInputs = [
geopandas
pytestCheckHook
];
disabledTests = [
# TypeError
"test_given_a_four_point_polygon_with_no_alpha_return_input"
"test_given_a_point_return_a_point"
];
pythonImportsCheck = [ "alphashape" ];
meta = with lib; {
description = "Toolbox for generating n-dimensional alpha shapes";
homepage = "https://github.com/bellockk/alphashape";
changelog = "https://github.com/bellockk/alphashape/releases/tag/${finalAttrs.src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
})
+2
View File
@@ -780,6 +780,8 @@ self: super: with self; {
alphaessopenapi = callPackage ../development/python-modules/alphaessopenapi { };
alphashape = callPackage ../development/python-modules/alphashape { };
altair = callPackage ../development/python-modules/altair { };
altcha = callPackage ../development/python-modules/altcha { };