bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
50 lines
906 B
Nix
50 lines
906 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
lib,
|
|
|
|
# pythonPackages
|
|
hatchling,
|
|
dnspython,
|
|
expiringdict,
|
|
html2text,
|
|
mail-parser,
|
|
imapclient,
|
|
publicsuffix2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mailsuite";
|
|
version = "1.9.15";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-R4nAphydamZojQR7pro5Y3dZg3nYK0+X5lFBMJUpCfw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
propagatedBuildInputs = [
|
|
dnspython
|
|
expiringdict
|
|
html2text
|
|
mail-parser
|
|
imapclient
|
|
publicsuffix2
|
|
];
|
|
|
|
pythonImportsCheck = [ "mailsuite" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Python package to simplify receiving, parsing, and sending email";
|
|
homepage = "https://seanthegeek.github.io/mailsuite/";
|
|
maintainers = with lib.maintainers; [ talyz ];
|
|
license = lib.licenses.asl20;
|
|
};
|
|
}
|