9 buildPythonPackage rec {
10 pname = "matrix-http-rendezvous-synapse";
14 src = fetchFromGitHub {
16 repo = "rust-http-rendezvous-server";
18 sha256 = "sha256-minwa+7HLTNSBtBtt5pnoHsFnNEh834nsVw80+FIQi8=";
22 cp ${./rendezvous-Cargo.lock} Cargo.lock
25 cargoDeps = rustPlatform.fetchCargoTarball {
26 inherit src postPatch;
27 name = "${pname}-${version}";
28 hash = "sha256-TyxDq6YxZUArRj5gpjB1afDQgtUlCVer3Uhq6YKvVYM=";
35 ++ (with rustPlatform; [
40 buildAndTestSubdir = "synapse";
42 pythonImportsCheck = [ "matrix_http_rendezvous_synapse" ];
45 description = "Implementation of MSC3886: Simple rendezvous capability";
46 homepage = "https://github.com/matrix-org/rust-http-rendezvous-server";
47 license = licenses.asl20;
48 maintainers = with maintainers; [ SuperSandro2000 ];