linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / meshio / default.nix
blob2c293b3b9c267f6134b6c6ef1e70d3a6a643c825
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , netcdf4
6 , h5py
7 , exdown
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "meshio";
13   version = "4.3.10";
14   format = "pyproject";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "1i34bk8bbc0dnizrlgj0yxnbzyvndkmnl6ryymxgcl9rv1abkfki";
19   };
21   propagatedBuildInputs = [
22     numpy
23     netcdf4
24     h5py
25   ];
27   checkInputs = [
28     exdown
29     pytestCheckHook
30   ];
32   pythonImportsCheck = ["meshio"];
34   meta = with lib; {
35     homepage = "https://github.com/nschloe/meshio";
36     description = "I/O for mesh files.";
37     license = licenses.mit;
38     maintainers = with maintainers; [ wd15 ];
39   };