Unverified Commit 509f32d9 authored by Gabriella Gonzalez's avatar Gabriella Gonzalez Committed by GitHub
Browse files

python3Packages.dnspython: fix tests (again) (#218662)

This is essentially the same fix as #161740, except not just for macOS.

The `dnspython` build was failing on Linux with a certificate
verification failure just like in #161740:

```ShellSession
$ nix build nixpkgs#python3Packages.dnspython --rebuild
error: builder for '/nix/store/c1v553fzq3yybsd0lm398qf87jmy47qd-python3.10-dnspython-2.3.0.drv' failed with exit code 1;
       last 10 log lines:
       >
       > /nix/store/iw1vmh509hcbby8dbpsaanbri4zsq7dj-python3-3.10.10/lib/python3.10/ssl.py:1342: SSLCertVerificationError
…
```

… and this change fixes that build failure.
parent 57b5ae9a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -64,10 +64,8 @@ buildPythonPackage rec {
  ];

  checkInputs = [
  ] ++ passthru.optional-dependencies.DNSSEC
  ++ lib.optionals stdenv.isDarwin [
    cacert
  ];
  ] ++ passthru.optional-dependencies.DNSSEC;

  disabledTests = [
    # dns.exception.SyntaxError: protocol not found