68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
h5py,
|
|
numpy,
|
|
dill,
|
|
astropy,
|
|
scipy,
|
|
pandas,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hickle";
|
|
version = "5.0.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-An5RzK0nnRaBI6JEUl5shLrA22RgWzEbC9NJiRvgxT4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tox.ini \
|
|
--replace-fail "--cov=./hickle" ""
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
dill
|
|
h5py
|
|
numpy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
astropy
|
|
pandas
|
|
pytestCheckHook
|
|
scipy
|
|
];
|
|
|
|
pythonImportsCheck = [ "hickle" ];
|
|
|
|
disabledTests = [
|
|
# broken in 5.0.2 with recent NumPy
|
|
# see https://github.com/telegraphic/hickle/issues/174
|
|
"test_scalar_compression"
|
|
# broken in 5.0.2 with Python 3.11
|
|
# see https://github.com/telegraphic/hickle/issues/169
|
|
"test_H5NodeFilterProxy"
|
|
# broken in 5.0.2
|
|
"test_slash_dict_keys"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Serialize Python data to HDF5";
|
|
homepage = "https://github.com/telegraphic/hickle";
|
|
changelog = "https://github.com/telegraphic/hickle/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|