blob: 8499760035b8ec88750f7bf956e2f383e268a492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
flask-migrate,
flask-sqlalchemy,
ldap3,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "automx2";
version = "2025.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "rseichter";
repo = "automx2";
tag = version;
hash = "sha256-wsKE1lplFUOi6i12ZMV9Oidc58jyuYawbAxJ4qqcYmg=";
};
build-system = [ setuptools ];
dependencies = [
flask
flask-migrate
flask-sqlalchemy
ldap3
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "automx2" ];
meta = {
description = "Email client configuration made easy";
homepage = "https://rseichter.github.io/automx2/";
changelog = "https://github.com/rseichter/automx2/blob/${version}/CHANGELOG";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ twey ];
};
}
|