rerun: 0.21.0 -> 0.22.1 (#379876)
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user