python3Packages.mailchecker: init at 4.1.8
This commit is contained in:
parent
9ff6000a29
commit
8b77b0ca84
32
pkgs/development/python-modules/mailchecker/default.nix
Normal file
32
pkgs/development/python-modules/mailchecker/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mailchecker";
|
||||
version = "4.1.8";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-RLZunjRX7lljKQl+sJ/py8bTR/YZsDewTJao9IBuLbE=";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -4782,6 +4782,8 @@ in {
|
||||
|
||||
mailcap-fix = callPackage ../development/python-modules/mailcap-fix { };
|
||||
|
||||
mailchecker = callPackage ../development/python-modules/mailchecker { };
|
||||
|
||||
mailchimp = callPackage ../development/python-modules/mailchimp { };
|
||||
|
||||
mailman = callPackage ../servers/mail/mailman { };
|
||||
|
Loading…
Reference in New Issue
Block a user