Gaetan Lepage
2025-02-22 11:09:57 +01:00
parent b6d624edf1
commit 4843b88c0d
2 changed files with 13 additions and 4 deletions
+4 -4
View File
@@ -35,13 +35,13 @@
rustPlatform.buildRustPackage rec {
pname = "rerun";
version = "0.21.0";
version = "0.22.1";
src = fetchFromGitHub {
owner = "rerun-io";
repo = "rerun";
tag = version;
hash = "sha256-U+Q8u1XKBD9c49eXAgc5vASKytgyAEYyYv8XNfftlZU=";
hash = "sha256-J9Iy/KiDajDavL95qLcQBfUWpZ6OiUtldk+ZAGpSNWA=";
};
# The path in `build.rs` is wrong for some reason, so we patch it to make the passthru tests work
@@ -51,7 +51,7 @@ rustPlatform.buildRustPackage rec {
'';
useFetchCargoVendor = true;
cargoHash = "sha256-IHsHvr50rhS4CH+27613OVBFC2oI37xvhKLjZY36oo8=";
cargoHash = "sha256-cGg8yi/jYKyle8dudHSNLPMnOtcgqlBQmu83h4B26NI=";
cargoBuildFlags = [ "--package rerun-cli" ];
cargoTestFlags = [ "--package rerun-cli" ];
@@ -153,7 +153,7 @@ rustPlatform.buildRustPackage rec {
meta = {
description = "Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui";
homepage = "https://github.com/rerun-io/rerun";
changelog = "https://github.com/rerun-io/rerun/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/rerun-io/rerun/blob/${version}/CHANGELOG.md";
license = with lib.licenses; [
asl20
mit
@@ -71,6 +71,15 @@ buildPythonPackage {
inherit (rerun) addDlopenRunpaths addDlopenRunpathsPhase;
postPhases = lib.optionals stdenv.hostPlatform.isLinux [ "addDlopenRunpathsPhase" ];
disabledTests = [
# numpy 2 incompatibility: AssertionError / IndexError
# Issue: https://github.com/rerun-io/rerun/issues/9105
# PR: https://github.com/rerun-io/rerun/pull/9109
"test_any_value"
"test_bad_any_value"
"test_none_any_value"
];
disabledTestPaths = [
# "fixture 'benchmark' not found"
"tests/python/log_benchmark/test_log_benchmark.py"