9 , oldest-supported-numpy
31 buildPythonPackage rec {
36 src = fetchFromGitHub {
38 repo = "python-blosc2";
39 rev = "refs/tags/v${version}";
40 hash = "sha256-yBgnNJU1q+FktIkpQn74LuRP19Ta/fNC60Z8TxzlWPk=";
44 substituteInPlace requirements-runtime.txt \
52 oldest-supported-numpy
59 buildInputs = [ c-blosc2 ];
61 dontUseCmakeConfigure = true;
62 env.CMAKE_ARGS = "-DUSE_SYSTEM_BLOSC2:BOOL=YES";
64 propagatedBuildInputs = [
78 passthru.c-blosc2 = c-blosc2;
81 description = "Python wrapper for the extremely fast Blosc2 compression library";
82 homepage = "https://github.com/Blosc/python-blosc2";
83 changelog = "https://github.com/Blosc/python-blosc2/releases/tag/v${version}";
84 license = licenses.bsd3;
85 maintainers = with maintainers; [ ris ];