Gaetan Lepage
2025-09-19 22:51:44 +00:00
parent 13e11d05c3
commit 192a1b856a
2 changed files with 8 additions and 3 deletions
+3 -3
View File
@@ -34,13 +34,13 @@
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rerun";
version = "0.24.1";
version = "0.25.1";
src = fetchFromGitHub {
owner = "rerun-io";
repo = "rerun";
tag = finalAttrs.version;
hash = "sha256-unPgvQcYhshdx5NGCl/pLh8UdJ9T6B8Fd0s8G1NSBmE=";
hash = "sha256-YppVNVfVqOATLCoUvpeYYrhivKBb6f4G1JCG1Bl+cjc=";
};
# The path in `build.rs` is wrong for some reason, so we patch it to make the passthru tests work
@@ -49,7 +49,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
--replace-fail '"rerun_sdk/rerun_cli/rerun"' '"rerun_sdk/rerun"'
'';
cargoHash = "sha256-zdq8djnmH8srSd9sml7t6wsbxpTaT3x5/7hkDRgelbg=";
cargoHash = "sha256-jUn7b6t5hS7KjdymxTTP8mKLT671QgKrv7R9uiOkmJU=";
cargoBuildFlags = [ "--package rerun-cli" ];
cargoTestFlags = [ "--package rerun-cli" ];
@@ -18,6 +18,7 @@
typing-extensions,
# tests
datafusion,
pytestCheckHook,
torch,
}:
@@ -64,6 +65,7 @@ buildPythonPackage {
pythonImportsCheck = [ "rerun" ];
nativeCheckInputs = [
datafusion
pytestCheckHook
torch
];
@@ -74,6 +76,9 @@ buildPythonPackage {
disabledTestPaths = [
# "fixture 'benchmark' not found"
"tests/python/log_benchmark/test_log_benchmark.py"
# ConnectionError: Connection error: transport error
"rerun_py/tests/unit/test_datafusion_tables.py"
];
meta = {