python3Packages.aiogram: 3.21.0 -> 3.22.0

Diff: https://github.com/aiogram/aiogram/compare/v3.21.0...v3.22.0

Changelog: https://github.com/aiogram/aiogram/releases/tag/v3.22.0

Changed files
+4 -2
pkgs
development
python-modules
aiogram
+4 -2
pkgs/development/python-modules/aiogram/default.nix
···
babel,
buildPythonPackage,
certifi,
fetchFromGitHub,
gitUpdater,
hatchling,
···
buildPythonPackage rec {
pname = "aiogram";
-
version = "3.21.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "aiogram";
repo = "aiogram";
tag = "v${version}";
-
hash = "sha256-2DRKJiIZXMK2PgAQFfa0GBgVITiOrNQTM8/fnCHiiw8=";
};
build-system = [ hatchling ];
···
redis = [ redis ];
proxy = [ aiohttp-socks ];
i18n = [ babel ];
};
nativeCheckInputs = [
···
babel,
buildPythonPackage,
certifi,
+
cryptography,
fetchFromGitHub,
gitUpdater,
hatchling,
···
buildPythonPackage rec {
pname = "aiogram";
+
version = "3.22.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "aiogram";
repo = "aiogram";
tag = "v${version}";
+
hash = "sha256-4LZ4+bt9n0q8WMaMEaAAIFnEuDUSd+Aq+YW49Xbcp5c=";
};
build-system = [ hatchling ];
···
redis = [ redis ];
proxy = [ aiohttp-socks ];
i18n = [ babel ];
+
signature = [ cryptography ];
};
nativeCheckInputs = [