Merge pull request #268496 from fabaff/kombu-bump

python311Packages.kombu: 5.3.3 -> 5.3.4
This commit is contained in:
Martin Weinelt 2023-11-19 18:46:56 +01:00 committed by GitHub
commit 0bf3f5cf6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,14 +27,14 @@
buildPythonPackage rec {
pname = "kombu";
version = "5.3.3";
version = "5.3.4";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-FJHfgmz8UXjIDz6J3W37po5ITvM024EHDrXLgJSzEWc=";
hash = "sha256-C7LieGRNEd6mJywXl0o9u5aIqUnzu2CutbeRMpxE+tw=";
};
propagatedBuildInputs = [
@ -104,7 +104,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Messaging library for Python";
homepage = "https://github.com/celery/kombu";
changelog = "https://github.com/celery/kombu/releases/tag/v${version}";
changelog = "https://github.com/celery/kombu/blob/v${version}/Changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};