blob: 93ecaf08697cfa87bfb2e3618bfa9c7af8ddcbbd (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
numpy,
setuptools,
wheel,
pytestCheckHook,
pyvista,
nix-update-script,
}:
buildPythonPackage rec {
pname = "fast-simplification";
version = "0.1.13";
pyproject = true;
src = fetchFromGitHub {
owner = "pyvista";
repo = "fast-simplification";
tag = "v${version}";
hash = "sha256-MgAOGB4wJQ68GyotaxiR9Xdho+TckHKEglQvCE2TWVY=";
};
build-system = [
cython
numpy
setuptools
wheel
];
dependencies = [
numpy
];
nativeCheckInputs = [
pytestCheckHook
pyvista
];
disabledTests = [
# need network to download data
"test_collapses_louis"
"test_human"
];
# make sure import the built version, not the source one
preCheck = ''
rm -r fast_simplification
'';
pythonImportsCheck = [
"fast_simplification"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Fast Quadratic Mesh Simplification";
homepage = "https://github.com/pyvista/fast-simplification";
changelog = "https://github.com/pyvista/fast-simplification/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
yzx9
];
};
}
|