Unverified Commit 3d479ec0 authored by James ‘Twey’ Kay's avatar James ‘Twey’ Kay
Browse files

python3Packages.automx2: init at 2022.01

parent dc1668ab
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };