12 buildPythonPackage rec {
13 pname = "python-whois";
17 disabled = pythonOlder "3.7";
20 pname = "python_whois";
22 hash = "sha256-GJaMIUhHUvzEuaXwr0d+9rjcLou38b1cM4MUmcDdQco=";
25 build-system = [ setuptools ];
27 dependencies = [ python-dateutil ];
35 # Exclude tests that require network access
40 "test_simple_ascii_domain"
41 "test_simple_unicode_domain"
44 pythonImportsCheck = [ "whois" ];
47 description = "Python module to produce parsed WHOIS data";
48 homepage = "https://github.com/richardpenman/whois";
49 license = with licenses; [ mit ];
50 maintainers = with maintainers; [ fab ];