python312Packages.aio-pika: 9.4.3 -> 9.5.0 (#357850)

This commit is contained in:
Nick Cao 2024-11-21 09:30:45 -05:00 committed by GitHub
commit d7bacce6ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@
aiormq,
buildPythonPackage,
docker,
exceptiongroup,
fetchFromGitHub,
pamqp,
poetry-core,
@ -17,7 +18,7 @@
buildPythonPackage rec {
pname = "aio-pika";
version = "9.4.3";
version = "9.5.0";
pyproject = true;
disabled = pythonOlder "3.9";
@ -26,13 +27,14 @@ buildPythonPackage rec {
owner = "mosquito";
repo = "aio-pika";
rev = "refs/tags/${version}";
hash = "sha256-lzBBcfWzhdT2v9RX5C+VWWSxsBCB7EOeCjm6wUrXGtA=";
hash = "sha256-4MweCuZbo/XDur9iwM3MT/P75HjEQvMlPI82bDxuol8=";
};
build-system = [ poetry-core ];
dependencies = [
aiormq
exceptiongroup
yarl
];