1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{ lib
, fetchFromGitHub
, buildPythonPackage
, cmake
, setuptools
, boost
, eigen
, gmp
, cgal # see https://github.com/NixOS/nixpkgs/pull/94875 about cgal
, mpfr
, tbb
, numpy
, cython
, pybind11
, matplotlib
, scipy
, pytest
, enableTBB ? false
}:
buildPythonPackage rec {
pname = "gudhi";
version = "3.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "GUDHI";
repo = "gudhi-devel";
rev = "tags/gudhi-release-${version}";
fetchSubmodules = true;
hash = "sha256-VL6RIPe8a2/cUHnHOql9e9EUMBB9QU311kMCaMZTbGI=";
};
nativeBuildInputs = [ cmake numpy cython pybind11 matplotlib setuptools ];
buildInputs = [ boost eigen gmp cgal mpfr ]
++ lib.optionals enableTBB [ tbb ];
propagatedBuildInputs = [ numpy scipy ];
nativeCheckInputs = [ pytest ];
cmakeFlags = [
(lib.cmakeBool "WITH_GUDHI_PYTHON" true)
(lib.cmakeFeature "Python_ADDITIONAL_VERSIONS" "3")
];
prePatch = ''
substituteInPlace src/python/CMakeLists.txt \
--replace '"''${GUDHI_PYTHON_PATH_ENV}"' ""
'';
preBuild = ''
cd src/python
'';
checkPhase = ''
runHook preCheck
rm -r gudhi
ctest --output-on-failure
runHook postCheck
'';
pythonImportsCheck = [ "gudhi" "gudhi.hera" "gudhi.point_cloud" "gudhi.clustering" ];
meta = {
description = "Library for Computational Topology and Topological Data Analysis (TDA)";
homepage = "https://gudhi.inria.fr/python/latest/";
downloadPage = "https://github.com/GUDHI/gudhi-devel";
license = with lib.licenses; [ mit gpl3 ];
maintainers = with lib.maintainers; [ yl3dy ];
};
}
|