python3Packages.rosbags: add missing safelz4 dependency on python >=3.14

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Guilhem Saurel
2026-01-05 02:24:45 +01:00
parent 1c2fa84262
commit 1223c633f4
@@ -1,7 +1,8 @@
{
lib,
buildPythonPackage,
fetchFromGitLab,
buildPythonPackage,
pythonAtLeast,
# build-system
setuptools,
@@ -11,6 +12,7 @@
lz4,
numpy,
ruamel-yaml,
safelz4,
typing-extensions,
zstandard,
@@ -44,7 +46,8 @@ buildPythonPackage rec {
ruamel-yaml
typing-extensions
zstandard
];
]
++ lib.optional (pythonAtLeast "3.14") safelz4;
nativeCheckInputs = [ pytestCheckHook ];