matrix-synapse: only include used optional dependencies in check (#369859)

This commit is contained in:
Jörg Thalheim
2025-01-07 14:56:08 +01:00
committed by GitHub
2 changed files with 4 additions and 1 deletions
@@ -97,5 +97,8 @@ buildPythonPackage rec {
changelog = "https://github.com/IdentityPython/pysaml2/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = [ ];
# Does not support pyopenssl above 24.3.0 due to use of a deprecated API,
# see https://github.com/IdentityPython/pysaml2/issues/975
broken = true;
};
}
+1 -1
View File
@@ -149,7 +149,7 @@ python3.pkgs.buildPythonApplication rec {
mock
parameterized
])
++ lib.flatten (lib.attrValues optional-dependencies);
++ builtins.filter (p: !p.meta.broken) (lib.flatten (lib.attrValues optional-dependencies));
doCheck = !stdenv.hostPlatform.isDarwin;