Merge pull request #312957 from knedlsepp/python-protobuf

protobuf_25.tests.pythonProtobuf: disable faulty test

authored by Someone and committed by GitHub 0852bd6a b30aef1f

+3 -1
+3 -1
pkgs/development/python-modules/protobuf/default.nix
··· 104 104 # https://github.com/protocolbuffers/protobuf/commit/5abab0f47e81ac085f0b2d17ec3b3a3b252a11f1 105 105 # 106 106 "google/protobuf/internal/generator_test.py" 107 + ] ++ lib.optionals (lib.versionAtLeast protobuf.version "25") [ 108 + "minimal_test.py" # ModuleNotFoundError: No module named 'google3' 107 109 ]; 108 110 109 111 pythonImportsCheck = [ ··· 122 124 maintainers = with maintainers; [ knedlsepp ]; 123 125 # Tests are currently failing because backend is unavailable and causes tests to fail 124 126 # Progress tracked in https://github.com/NixOS/nixpkgs/pull/264902 125 - broken = lib.versionAtLeast protobuf.version "25"; 127 + broken = lib.versionAtLeast protobuf.version "26"; 126 128 }; 127 129 }