python312Packages.automx2: 2024.2 -> 2025.1.1

R. Ryantm 947eb2af 3ca2ceda

Changed files
+9 -7
pkgs
development
python-modules
automx2
+9 -7
pkgs/development/python-modules/automx2/default.nix
···
fetchFromGitHub,
flask,
flask-migrate,
+
flask-sqlalchemy,
ldap3,
pytestCheckHook,
pythonOlder,
···
buildPythonPackage rec {
pname = "automx2";
-
version = "2024.2";
+
version = "2025.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "rseichter";
repo = "automx2";
tag = version;
-
hash = "sha256-7SbSKSjDHTppdqfPPKvuWbdoksHa6BMIOXOq0jDggTE=";
+
hash = "sha256-wsKE1lplFUOi6i12ZMV9Oidc58jyuYawbAxJ4qqcYmg=";
};
-
nativeBuildInputs = [ setuptools ];
+
build-system = [ setuptools ];
-
propagatedBuildInputs = [
+
dependencies = [
flask
flask-migrate
+
flask-sqlalchemy
ldap3
];
···
pythonImportsCheck = [ "automx2" ];
-
meta = with lib; {
+
meta = {
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 ];
+
license = lib.licenses.gpl3Plus;
+
maintainers = with lib.maintainers; [ twey ];
};
}