{ lib, buildPythonPackage, fetchFromGitHub, setuptools, nix-update-script, }: buildPythonPackage rec { pname = "tlds"; version = "2025082700"; pyproject = true; src = fetchFromGitHub { owner = "kichik"; repo = "tlds"; tag = version; hash = "sha256-sMK+jglwhF8FX8yLDHBtheudfg20MOJhk+zHznQ0hbk="; }; nativeBuildInputs = [ setuptools ]; pythonImportsCheck = [ "tlds" ]; # no tests doCheck = false; passthru.updateScript = nix-update-script { }; meta = with lib; { description = "Automatically updated list of valid TLDs taken directly from IANA"; homepage = "https://github.com/kichik/tlds"; license = licenses.mit; maintainers = with maintainers; [ hexa ]; }; }