mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
aefce34bc5
Adds "pem", which is a new dependency added in the last release from upstream. Nixos patches certifi to return the system ca bundle, which includes openssl-format "trusted certificate"s, which pyopenssl seems to choke on when syncplay tries to load them. Therefore, we add a patch that skips those "trusted certificates".
13 lines
638 B
Diff
13 lines
638 B
Diff
diff --git a/syncplay/client.py b/syncplay/client.py
|
|
index b7cb245..be72d94 100755
|
|
--- a/syncplay/client.py
|
|
+++ b/syncplay/client.py
|
|
@@ -848,6 +848,7 @@ class SyncplayClient(object):
|
|
self._endpoint = HostnameEndpoint(reactor, host, port)
|
|
try:
|
|
certs = pem.parse_file(SSL_CERT_FILE)
|
|
+ certs = [cert for cert in certs if type(cert) is pem.Certificate]
|
|
trustRoot = trustRootFromCertificates([Certificate.loadPEM(str(cert)) for cert in certs])
|
|
self.protocolFactory.options = optionsForClientTLS(hostname=host, trustRoot=trustRoot)
|
|
self._clientSupportsTLS = True
|