1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "dnspython";
9 version = "1.16.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 extension = "zip";
14 sha256 = "36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01";
15 };
16
17 # needs networking for some tests
18 doCheck = false;
19 pythonImportsCheck = [ "dns" ];
20
21 meta = with lib; {
22 description = "A DNS toolkit for Python";
23 homepage = "http://www.dnspython.org";
24 license = with licenses; [ isc ];
25 };
26}