blob: e10c433246b5ad3f64c4c2e5697665d6d0a32226 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
matplotlib,
numpy,
pillow,
pooch,
scooby,
setuptools,
typing-extensions,
vtk,
}:
buildPythonPackage rec {
pname = "pyvista";
version = "0.46.5";
pyproject = true;
src = fetchFromGitHub {
owner = "pyvista";
repo = "pyvista";
tag = "v${version}";
hash = "sha256-yTCHbAOcAxXrXwKbTXKGuSwoA69hy+XBT1kt6MhdoxQ=";
};
build-system = [ setuptools ];
dependencies = [
matplotlib
numpy
pillow
pooch
scooby
typing-extensions
vtk
];
# Fatal Python error: Aborted
doCheck = false;
pythonImportsCheck = [ "pyvista" ];
meta = {
description = "Easier Pythonic interface to VTK";
homepage = "https://pyvista.org";
changelog = "https://github.com/pyvista/pyvista/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wegank ];
};
}
|