nixpkgs/pkgs/development/python-modules/meshio/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

48 lines
736 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, netcdf4
, h5py
, exdown
, pytestCheckHook
, rich
, setuptools
}:
buildPythonPackage rec {
pname = "meshio";
version = "5.3.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-4kBpLX/yecErE8bl17QDYpqGrStE6SMJWLPwDB7DafA=";
};
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.";
license = licenses.mit;
maintainers = with maintainers; [ wd15 ];
};
}