Merge pull request #265793 from fabaff/amqp-bump

python311Packages.amqp: 5.1.1 -> 5.2.0
This commit is contained in:
Fabian Affolter
2023-11-06 10:59:37 +01:00
committed by GitHub
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "amqp";
version = "5.1.1";
version = "5.2.0";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-LBsT/swIk+lGxly9XzZCeGHP+k6iIB2Pb8oi4qNzteI=";
hash = "sha256-oez/QlrQY61CpIbJAoB9FIIxFIHIrZWnJpSyl1519/0=";
};
propagatedBuildInputs = [
@@ -44,6 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project";
homepage = "https://github.com/celery/py-amqp";
changelog = "https://github.com/celery/py-amqp/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};