mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 14:43:37 +00:00
python3Packages.dnspython: fix build on darwin
by disabling failing tests
This commit is contained in:
parent
3eb07eeafb
commit
33e1d138c0
@ -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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user