11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "michaelherold";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-bJCaVUhvEAoQ8zMsbcb1Et728XHt+shEPhhBzPzY/vo=";
25 nativeBuildInputs = [ hatchling ];
27 propagatedBuildInputs = [ dnspython ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "pyisemail" ];
34 description = "Module for email validation";
35 homepage = "https://github.com/michaelherold/pyIsEmail";
36 changelog = "https://github.com/michaelherold/pyIsEmail/blob/${version}/CHANGELOG.rst";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];