python3Packages.dnspython: fix build on darwin

by disabling failing tests
This commit is contained in:
Pavol Rusnak 2022-03-16 18:05:56 +01:00
parent 3eb07eeafb
commit 33e1d138c0
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
@ -24,6 +25,11 @@ buildPythonPackage rec {
disabledTests = [
# dns.exception.SyntaxError: protocol not found
"test_misc_good_WKS_text"
] ++ lib.optionals stdenv.isDarwin [
# unable to get local issuer certificate
"test_async"
"test_query"
"test_resolver_override"
];
nativeBuildInputs = [