159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
py-cpuinfo,
|
|
h5py,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hdf5plugin";
|
|
version = "5.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "silx-kit";
|
|
repo = "hdf5plugin";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6lEU8ZGJKazDqloel5QcaXAbNGzV1fAbAjYC/hFUOdI=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
py-cpuinfo
|
|
];
|
|
|
|
dependencies = [ h5py ];
|
|
|
|
checkPhase = ''
|
|
python test/test.py
|
|
'';
|
|
pythonImportsCheck = [ "hdf5plugin" ];
|
|
|
|
preBuild = ''
|
|
mkdir src/hdf5plugin/plugins
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Additional compression filters for h5py";
|
|
longDescription = ''
|
|
hdf5plugin provides HDF5 compression filters and makes them usable from h5py.
|
|
Supported encodings: Blosc, Blosc2, BitShuffle, BZip2, FciDecomp, LZ4, SZ, SZ3, Zfp, ZStd
|
|
'';
|
|
homepage = "http://www.silx.org/doc/hdf5plugin/latest/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pbsds ];
|
|
};
|
|
}
|