blob: 6e9904267ece84c1e393795d447bc3aecf575926 (
plain) (
blame)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
numpy,
netcdf4,
h5py,
exdown,
pytestCheckHook,
rich,
setuptools,
}:
buildPythonPackage rec {
pname = "meshio";
version = "5.3.5";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-8h8Bq9nym6BuoRkwSz055hBCHP6Tud0jNig0kZ+HWG0=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
numpy
netcdf4
h5py
rich
];
nativeCheckInputs = [
exdown
pytestCheckHook
];
pythonImportsCheck = [ "meshio" ];
meta = with lib; {
homepage = "https://github.com/nschloe/meshio";
description = "I/O for mesh files";
mainProgram = "meshio";
license = licenses.mit;
maintainers = with maintainers; [ wd15 ];
};
}
|