44 lines
866 B
Nix
44 lines
866 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
setuptools,
|
||
|
numpy,
|
||
|
pytestCheckHook,
|
||
|
pytest-cov,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyevtk";
|
||
|
version = "1.6.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
|
||
|
hash = "sha256-H2vnh2o6AFyCWIYVUdpP5+RP8aLn/yqT1txR3u39pfQ=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace setup.py \
|
||
|
--replace-fail 'setup_requires=["pytest-runner"],' 'setup_requires=[],'
|
||
|
'';
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
dependencies = [ numpy ];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytestCheckHook
|
||
|
pytest-cov
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "pyevtk" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Exports data to binary VTK files for visualization/analysis";
|
||
|
homepage = "https://github.com/pyscience-projects/pyevtk";
|
||
|
license = lib.licenses.bsd2;
|
||
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
||
|
};
|
||
|
}
|