python3Packages.automx2: init at 2022.01

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
This commit is contained in:
James ‘Twey’ Kay 2023-09-15 21:11:37 +01:00
parent dc1668abd0
commit 3d479ec076
No known key found for this signature in database
GPG Key ID: 749D0213D0C5A7CA
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, flask
, flask-migrate
, ldap3
}:
buildPythonPackage rec {
pname = "automx2";
version = "2022.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-My0YT5FLYjXSRKC0oUYNybewv6CIKr93tqMZ2fYY+5I=";
};
propagatedBuildInputs = [
flask
flask-migrate
ldap3
];
pythonImportsCheck = [ "automx2" ];
meta = with lib; {
description = "Email client configuration made easy";
homepage = "https://rseichter.github.io/automx2/";
changelog = "https://github.com/rseichter/automx2/blob/${version}/CHANGELOG";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ twey ];
};
}

View File

@ -908,6 +908,8 @@ self: super: with self; {
automate-home = callPackage ../development/python-modules/automate-home { };
automx2 = callPackage ../development/python-modules/automx2 { };
autopage = callPackage ../development/python-modules/autopage { };
autopep8 = callPackage ../development/python-modules/autopep8 { };