depot/third_party/nixpkgs/pkgs/development/python-modules/pyisemail/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

47 lines
906 B
Nix

{ lib
, buildPythonPackage
, dnspython
, fetchFromGitHub
, hatchling
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyisemail";
version = "2.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "michaelherold";
repo = "pyIsEmail";
rev = "refs/tags/v${version}";
hash = "sha256-bJCaVUhvEAoQ8zMsbcb1Et728XHt+shEPhhBzPzY/vo=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
dnspython
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pyisemail"
];
meta = with lib; {
description = "Module for email validation";
homepage = "https://github.com/michaelherold/pyIsEmail";
changelog = "https://github.com/michaelherold/pyIsEmail/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}