nixpkgs/pkgs/development/python-modules/dnspython/default.nix
Gabriella Gonzalez 509f32d9c9
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.
2023-02-27 12:39:53 -08:00

96 lines
1.7 KiB
Nix

{ lib
, stdenv
, aioquic
, buildPythonPackage
, cacert
, cryptography
, curio
, fetchPypi
, h2
, httpx
, idna
, pytestCheckHook
, pythonOlder
, requests
, requests-toolbelt
, setuptools-scm
, sniffio
, trio
}:
buildPythonPackage rec {
pname = "dnspython";
version = "2.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ik4ysD60a+cOEu9tZOC+Ejpk5iGrTAgi/21FDVKlQLk=";
};
nativeBuildInputs = [
setuptools-scm
];
passthru.optional-dependencies = {
DOH = [
httpx
h2
requests
requests-toolbelt
];
IDNA = [
idna
];
DNSSEC = [
cryptography
];
trio = [
trio
];
curio = [
curio
sniffio
];
DOQ = [
aioquic
];
};
nativeCheckInputs = [
pytestCheckHook
];
checkInputs = [
cacert
] ++ passthru.optional-dependencies.DNSSEC;
disabledTests = [
# dns.exception.SyntaxError: protocol not found
"test_misc_good_WKS_text"
# fails if IPv6 isn't available
"test_resolver_override"
] ++ lib.optionals stdenv.isDarwin [
# Tests that run inconsistently on darwin systems
# 9 tests fail with: BlockingIOError: [Errno 35] Resource temporarily unavailable
"testQueryUDP"
# 6 tests fail with: dns.resolver.LifetimeTimeout: The resolution lifetime expired after ...
"testResolveCacheHit"
"testResolveTCP"
];
pythonImportsCheck = [
"dns"
];
meta = with lib; {
description = "A DNS toolkit for Python";
homepage = "https://www.dnspython.org";
changelog = "https://github.com/rthalley/dnspython/blob/v${version}/doc/whatsnew.rst";
license = with licenses; [ isc ];
maintainers = with maintainers; [ gador ];
};
}