10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "python-whois";
21 hash = "sha256-uKAqpxb72fo0DiaChuJvDizq0z/oFSDHWJuK4vuYIzo=";
24 nativeBuildInputs = [ hatchling ];
26 propagatedBuildInputs = [
31 # Tests require network access
34 pythonImportsCheck = [ "whois" ];
37 description = "Python module/library for retrieving WHOIS information";
38 homepage = "https://github.com/DannyCork/python-whois/";
39 changelog = "https://github.com/DannyCork/python-whois/releases/tag/${version}";
40 license = with licenses; [ mit ];
41 maintainers = with maintainers; [ fab ];