rerun: 0.24.1 -> 0.25.1

Diff: https://github.com/rerun-io/rerun/compare/0.24.1...0.25.1

Changelog: https://github.com/rerun-io/rerun/blob/0.25.1/CHANGELOG.md

Changed files
+8 -3
pkgs
by-name
re
rerun
development
python-modules
rerun-sdk
+3 -3
pkgs/by-name/re/rerun/package.nix
···
}:
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
···
--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" ];
+5
pkgs/development/python-modules/rerun-sdk/default.nix
···
typing-extensions,
# tests
+
datafusion,
pytestCheckHook,
torch,
}:
···
pythonImportsCheck = [ "rerun" ];
nativeCheckInputs = [
+
datafusion
pytestCheckHook
torch
];
···
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 = {