matrix-synapse: only include used optional dependencies in check (#369859)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user