33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{ lib
|
|
, atpublic
|
|
, attrs
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiosmtpd";
|
|
version = "1.4.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aio-libs";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-QtLtw+2jEPLOxa45vDEbWEaSZ8RIyxf1zkZjR34Wu+8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
atpublic
|
|
attrs
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Fixes for Python 3.10 can't be applied easily, https://github.com/aio-libs/aiosmtpd/pull/294
|
|
doCheck = pythonOlder "3.10";
|
|
|
|
disabledTests = [
|
|
# Requires git
|
|
"test_ge_master"
|
|
# Seems to be a sandbox issue
|
|
"test_byclient"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"aiosmtpd"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Asyncio based SMTP server";
|
|
homepage = "https://aiosmtpd.readthedocs.io/";
|
|
longDescription = ''
|
|
This is a server for SMTP and related protocols, similar in utility to the
|
|
standard library's smtpd.py module.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|