Merge pull request #211851 from pbsds/hdf5plugin-init

python3Packages.hdf5plugin: init at 4.1.0
This commit is contained in:
Jonas Heinrich
2023-01-22 09:38:13 +01:00
committed by GitHub
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, h5py
}:
buildPythonPackage rec {
pname = "hdf5plugin";
version = "4.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "silx-kit";
repo = "hdf5plugin";
rev = "refs/tags/v${version}";
hash = "sha256-fFR5t8jHOQc6eDNDhDcntibaveGAmI+j/dVte1tdcyk=";
};
propagatedBuildInputs = [
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; [ bhipple ];
};
}
+2
View File
@@ -4189,6 +4189,8 @@ self: super: with self; {
hdate = callPackage ../development/python-modules/hdate { };
hdf5plugin = callPackage ../development/python-modules/hdf5plugin { };
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
ha-philipsjs = callPackage ../development/python-modules/ha-philipsjs{ };