{ lib , buildPythonPackage , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "mailchecker"; version = "5.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-d8RG/PSWPHvQy7o9tPLPGrEp0r/Y3JWwWoT3cS4iR38="; }; # Module has no tests doCheck = false; pythonImportsCheck = [ "MailChecker" ]; meta = with lib; { description = "Module for temporary (disposable/throwaway) email detection"; homepage = "https://github.com/FGRibreau/mailchecker"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }