zenoh,python3Packages.zenoh: 1.0.3 -> 1.1.0 (#364228)

This commit is contained in:
Markus Kowalewski
2024-12-13 09:38:01 +01:00
committed by GitHub
2 changed files with 12 additions and 6 deletions
+9 -3
View File
@@ -7,16 +7,16 @@
}:
rustPlatform.buildRustPackage rec {
pname = "zenoh";
version = "1.0.3";
version = "1.1.0";
src = fetchFromGitHub {
owner = "eclipse-zenoh";
repo = "zenoh";
rev = version;
hash = "sha256-3k266sIP3A76HlFGUax4XIVQqwCKSvShJuBIuNWKJ2c=";
hash = "sha256-Ydmd3eCXn+svMak1I5LU4rJNhzEEc2MiG5MoSMNOJ00=";
};
cargoHash = "sha256-Ny7kLFJveibDmi48a5KS0GKumX4RUAkoeh66tx9oR5g=";
cargoHash = "sha256-AjMgnZ+GJPGMQsyeOQGyXpVrdw2zb7B9/KXWKlvKT1Q=";
cargoBuildFlags = [
"--workspace"
@@ -72,6 +72,12 @@ rustPlatform.buildRustPackage rec {
# thread 'openclose_udp_only_connect_with_interface_restriction' panicked at io/zenoh-transport/tests/unicast_openclose.rs:802:63:
# index out of bounds: the len is 0 but the index is 0
"--skip openclose_udp_only_listen_with_interface_restriction"
# These tests require a network interface and fail in the sandbox
"--skip openclose_quic_only_listen_with_interface_restriction"
"--skip openclose_quic_only_connect_with_interface_restriction"
"--skip openclose_tls_only_connect_with_interface_restriction"
"--skip openclose_tls_only_listen_with_interface_restriction"
];
passthru.tests.version = testers.testVersion {
@@ -11,19 +11,19 @@
buildPythonPackage rec {
pname = "zenoh";
version = "1.0.3";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "eclipse-zenoh";
repo = "zenoh-python";
rev = version;
hash = "sha256-LQ6zu0yD2heprN2p6zO/ZC6uIsMlc1FyDuZ/dvOnVqU=";
hash = "sha256-DO5AZDS7XvExxATtbkFOLG66zQOZu4gE6VWOG7C3qGA=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src pname version;
hash = "sha256-6a2OSZLn1OYpe4tAv60uBhh/b+3QewPxVtQIDOnpk3A=";
hash = "sha256-GolnCEsqCGxjrKl2qXVRi9+d8hwXNsRVdfI7Cf60/jg=";
};
build-system = [